ENTREGA FINAL: SPACE NEWS

AUTOR: Laia Delgado y Diego García-Romero

GRUPO: MAIS3A

Objetivo

Nuestro objetivo es aplicar gran parte de las técnicas vistas en la asingatura Búsqueda y Análisis de la Información al DataSet Space News. Además de intentar aplicar algunas técnicas vistas en Inteligencia Artificial.

El DataSet lo hemos encontrado en la siguiente fuente:

Este DataSet recoge información sobre noticias del espacio, en concreto aquellas que han sido publicadas por SpaceNews. A continuacón hay un link a su página:

Preparación del entorno

Vamos a preparar el entorno con el directorio de trabajo, la declaración de paquetes que vamos a usar y el dataset con el que haremos la práctica.

Directorio de trabajo

Al ejecutar el notebook es necesario cambiar la ruta a una propia del ordenador donde se ejecute, si no dará error.

setwd("C:/Users/laiad/Downloads/PracticaFinal_Diego_Garcia_Laia_Delgado/PracticaFinal_Diego_Garcia_Laia_Delgado/Parte de R")

Paquetes necesarios

  1. Análisis de texto y procesamiento de lenguaje natural (NLP):
    • quanteda
    • quanteda.textstats
    • tidytext
    • tm
    • stopwords
    • stringr
    • textdata
    • readtext
  2. Visualización de texto:
    • quanteda.textplots
    • ggplot2
    • wordcloud
    • RColorBrewer
    • scales
  3. Análisis de sentimientos:
    • SentimentAnalysis
    • syuzhet
  4. Manipulación y visualización de datos:
    • tidyverse
    • dplyr
    • forcats
    • lubridate
  5. Modelado de tópicos:
    • topicmodels
library(quanteda)
library(quanteda.textplots)
library(stringr)
library(quanteda.textstats)
library(tidytext)
library(tidyverse)
library(forcats)
library(scales)
library(SentimentAnalysis)
library(syuzhet)
library(dplyr)
library(textdata)
library(ggplot2)
library(lubridate)
library(wordcloud)
library(tm)
library(stopwords)
library(stringr)
library(ggplot2)
library(topicmodels)
library(readtext)
library(RColorBrewer)

Lectura de ficheros

Al ejecutar el notebook es necesario cambiar la ruta a una propia del ordenador donde se ejecute, si no dará error.

ruta_ficheros <- "C:/Users/laiad/Downloads/PracticaFinal_Diego_Garcia_Laia_Delgado/PracticaFinal_Diego_Garcia_Laia_Delgado/Parte de R"

mis_ficheros <- list.files(ruta_ficheros, pattern = "*.csv")

Lectura de datos

Rellenamos el dataset datos_space. Dado que sólo tenemos un único csv podemos rellenarlo sin necesidad de ningún bucle, aunque es buena práctica rellenar el DataSet uno a uno sin uso de bucles.

datos_space <- data.frame()

datos_space <- read.csv("spacenews.csv", header = TRUE, sep = ",")

Guardamos el DataSet

save(datos_space, file = "datos_space.rda")

Preprocesamiento de datos y limpieza

Una vez tenemos el DataSet con todos los datos vamos a terminar de preparlo. Para ello nos quedaremos sólo con las columnas que aporten información relevante, eliminaremos todo aquello que no aporte nada y lo dejaremos todo en un formato que facilite su posterior estudio.

Vamos a ver la estructura del DataSet.

summary(datos_space)
##     title               url              content             author         
##  Length:19584       Length:19584       Length:19584       Length:19584      
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##      date           postexcerpt       
##  Length:19584       Length:19584      
##  Class :character   Class :character  
##  Mode  :character   Mode  :character

Se observa que nuestro DataSet esta compuesto por 6 columnas, ‘title’, ‘url’, ‘content’, ‘author’, ‘date’ y ‘postexcerpt’.

  1. title (título):
    • La columna “title” contiene los títulos de las noticias.
    • Esta columna proporciona el título de cada noticia, lo que puede ser útil para comprender el tema principal de la noticia.
  2. url (URL):
    • La columna “url” contiene las direcciones URL de las noticias.
    • Estos enlaces pueden ser útiles si deseas acceder directamente a la noticia original en línea.
  3. content (contenido):
    • La columna “content” contiene el contenido completo de las noticias.
    • Esta columna es la más rica en información, ya que contiene el cuerpo completo de las noticias. Puede ser útil para análisis de texto, extracción de información clave y análisis de sentimientos, entre otros.
  4. author (autor):
    • La columna “author” contiene los nombres de los autores de las noticias.
    • Siempre y cuando se hayan proporcionado nombres de autores, esta columna puede ser útil para identificar quién escribió cada noticia.
  5. date (fecha):
    • La columna “date” contiene las fechas en que se publicaron las noticias.
    • Esta columna proporciona la fecha de publicación de cada noticia, lo que es útil para el análisis temporal y el seguimiento de eventos.
  6. postexcerpt (extracto de la publicación):
    • La columna “postexcerpt” contiene extractos de las noticias. -Los extractos pueden ser resúmenes cortos de las noticias o fragmentos destacados, útiles para tener una idea rápida del contenido de la noticia sin leer el artículo completo.

Viendo la estructura, podriamos identificar la columna author como una variable categórica, por lo que podríamos factorizarla para facilitar la búsqueda y análisis.

datos_space$author <- as.factor(datos_space$author)

Podemos verificar que se ha factorizado correctamente.

summary(datos_space)
##     title               url              content         
##  Length:19584       Length:19584       Length:19584      
##  Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character  
##                                                          
##                                                          
##                                                          
##                                                          
##                  author         date           postexcerpt       
##  Jeff Foust         :4865   Length:19584       Length:19584      
##  Peter B. de Selding:2539   Class :character   Class :character  
##  Sandra Erwin       :2438   Mode  :character   Mode  :character  
##  Debra Werner       :1489                                        
##  Caleb Henry        :1172                                        
##  SpaceNews Staff    : 878                                        
##  (Other)            :6203

El formato de la fecha podemos cambiarlo para facilitar el estudio. La forma más fácil es haciendo uso de la libreria lubridate.

# Convertir la columna 'date' a tipo fecha
datos_space$date <- mdy(datos_space$date)

# Verificar la conversión
head(datos_space$date)
## [1] "2023-09-14" "2023-09-13" "2023-09-13" "2023-09-13" "2023-09-13"
## [6] "2023-09-13"

Limpieza

En esta parte vamos a limpiar datos_space, en concreto la columna de content que será donde realizaremos un estudio más profundo. Esto es quitar información irrelevante, es decir URLs, menciones a otros usuarios, RT, caracteres raros, emojis, etc. y convertir todo a minúsculas para un fácil estudio.

Dado que estamos en un DataSet con artículos que se suben a Internet y la propia editorial tiene cuenta de X (anteoriormente Twitter), vamos a quitar posibles menciones o RT en caso de que en alguna noticia se haga alguna referencia a esto.

Primero hacemos una copia del dataset original.

datos_space_limpios <- datos_space
  • Eliminación de URLs
datos_space_limpios$content <- str_replace_all(datos_space$content, 
                                                 pattern = "https?://([^/\\s]++)\\S*+|http?://([^/\\s]++)\\S*+",
                                                 replacement = "")
  • Eliminación de links, menciones, RT, etc.
datos_space_limpios$content <- gsub("(#\\w+)|(http\\S+)|(https\\S+)|(&amp;)|(@\\w+)|(RT)", "", datos_space$content)
  • Eliminación de caracteres raros, emojis, etc.
datos_space_limpios$content <- gsub("[\\x{1F600}-\\x{1F6FF}|\\x{2600}-\\x{26FF}|\\x{2700}-\\x{27BF}|\\x{1F300}-\\x{1F5FF}|\\x{1F680}-\\x{1F6FF}|\\x{1F1E0}-\\x{1F1FF}|\\x{1F900}-\\x{1F9FF}|\\x{1F7E0}-\\x{1F7FF}|\\x{1F918}]", "", datos_space$content, perl=TRUE)
  • Eliminación de caracteres que no son alfanuméricos ni espacios en blanco.
datos_space_limpios$content <- gsub("[^[:alnum:][:space:]]", "", datos_space$content, perl=TRUE)

Una vez hemos limpiado el DataSet, comprobamos si ha quedado relativamente limpio.

grep(pattern = "http",datos_space$content,perl = T)
grep(pattern = "#",datos_space$content,perl = T)

Por último, para facilitar el estudio vamos a poner todo en minúscula.

datos_space_limpios$content <- tolower(datos_space$content)

Si mostramos los 5 primeros elementos del DataSet

head(datos_space_limpios, 5)
##                                                                                          title
## 1                                HawkEye 360 reaches inflection point on path to profitability
## 2                                               SES Q&A | Leveling up multi-orbit connectivity
## 3                                      Rapid Starlink iteration poses challenges for resellers
## 4               Space Force to release guidelines for the use of commercial satellite services
## 5 ULA has ‘no issues’ with Space Force plan to select three national security launch providers
##                                                                                                                 url
## 1                              https://spacenews.com/hawkeye-360-reaches-inflection-point-on-path-to-profitability/
## 2                                                https://spacenews.com/ses-qa-leveling-up-multi-orbit-connectivity/
## 3                                    https://spacenews.com/rapid-starlink-iteration-poses-challenges-for-resellers/
## 4             https://spacenews.com/space-force-to-release-guidelines-for-the-use-of-commercial-satellite-services/
## 5 https://spacenews.com/ula-has-no-issues-with-space-force-plan-to-select-three-national-security-launch-providers/
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      content
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  paris — with a recent funding round and growing demand for its radio-frequency geolocation capabilities, hawkeye 360’s chief executive says the company has reached an “inflection point” on the path towards profitability and potentially going public. hawkeye 360 announced july 13  it raised $58 million in a series d-1 round  led by blackrock. the company said then that the funding would support development of new satellites and analytics products. the company has raised $368 million to date, said john serafini, chief executive of hawkeye 360, in an interview during world satellite business week here sept. 13. that round may also be the last private funding the company needs to raise. “provided that we execute against our revenue forecasts, which are conservative and we think we can do, we won’t need to raise additional private capital,” he said. profitability, he added, “is on the horizon for us,” but didn’t offer a specific timeline for achieving it. in a presentation at an investor conference a year ago,  serafini said the company was considering going public  though an initial public offering (ipo) of stock in two to three years. that is still the plan now, he said, although the timing will depend as much on market conditions as it will the state of the company. “the market being open or closed has a lot to do with it,” he said of the timing of an ipo, which he said remains likely two to three years out. “whether we can achieve the requisite milestones is the biggest issue,” such as achieving profitability and the right unit economics. “that’s what we can control and we’re rushing like heck to get to that spot.” the new funding and the growth of the business have put hawkeye 360 into a good position, he argued. “i would say we’re at an inflection point,” he said, from the funding to plans to launch additional satellites and development of analytics tools that leverage machine learning and artificial intelligence. “all of that in the next 12 to 18 months has got us in a great position.” governments remain the largest customers for hawkeye 360, which serafini said will likely be the case for the foreseeable future. that has included defense and intelligence applications as well as some civil and broader security applications, like tracking illegal fishing or deforestation. “one of the tenets we set the company up with was to focus on where the money is. the money in remote sensing is, ultimately, in defense and intelligence,” he said. “if you can’t service those customers, you’re not going to exist as a company.” that work has included work in ukraine since russia’s invasion more than a year and a half ago,  tracking sources of gps and other radio-frequency interference . serafini declined to go into details about the company’s work there, but he said the conflict has highlighted the importance of both commercial remote sensing capabilities in general as well as the need to work closely with the users of those capabilities. “throwing remote sensing data over a fence probably doesn’t lead to success,” he said. “one of the areas of growth for hawkeye is understanding the tactical intelligence, surveillance, reconnaissance requirements of our customers, and the networks and systems that they operate in, such that our data can flow into their existing systems as seamlessly as possible and produce another layer of valuable intelligence, not just drowning them in additional data.” that data comes from 21 satellites currently in orbit. six more are scheduled to launch later this year on a rocket lab electron from new zealand. the company’s long-term goal is to have 60 satellites, in 20 three-satellite clusters, which serafini said the company expects to achieve by 2025 or 2026. those satellites, built both by the space flight laboratory at the university of toronto institute for aerospace studies as well as hawkeye 360’s own facility in northern virginia, will be a mix of both its existing block 2 design and new block 3 design. the plans for block 3 are “very fluid,” he said, and could feature two different designs, a smaller one to focus on specific signals and a larger one to do “very advanced” work. hawkeye 360 also announced sept. 12 it promoted rob rainhart, the company’s chief operating officer since 2019, to president. “rob and i have been partners together for eight years,” serafini said. rainhart handles internal company operations, responsibilities he will continue as president. “he keeps the company running on time, and so it felt like the right time to make the move to promote him to president.”
## 2 multi-orbit satellite operator ses is on the verge of realizing key strategic goals that have been years in the making.  after recently deploying the geostationary satellites  needed to claim around $3 billion  in c-band spectrum clearing proceeds, the company is now just months away from launching initial services for its upgraded o3b mpower broadband network in medium earth orbit (meo). so many were surprised to see  steve collar’s june 12 announcement  that he was retiring as ceo two weeks later, following more than 20 years with the luxembourg-based operator, including five years at the helm. collar was replaced by ruy pinto, who joined the company in 2017 and was previously its chief technology officer. in his first ses earnings call as ceo aug. 3, pinto  said an electrical glitch  on the first four o3b mpower satellites was sporadically tripping off power modules — although the trip-offs could be resolved quickly without affecting payload performance.  still, the issue has delayed the launch of the fifth and sixth o3b mpower satellites, which are needed for initial services and were slated to launch by the end of june as of the operator’s previous earnings call. boeing is contracted to provide 11 ka-band o3b mpower satellites to enable full services from the operator’s second-generation meo constellation. spacenews  caught up with pinto on the sidelines of euroconsult’s world satellite business week conference in paris to learn more about how the operator is tackling its opportunities and challenges. steve collar’s sudden departure as ceo in june surprised many in the industry. was it also a surprise for you? it was a surprise to a certain extent. but steve is staying on as an advisor and is very much engaged in what is happening with the industry and what is happening with ses — i talk to him quite often. was it partly a result of diverging views with the board? the board, steve, the management team, and myself have been very consistent on our strategy. we have strong financials, we’ve focused on our unique capabilities around meo, we are investing in o3b mpower, and we believe in our strong position in markets like cruise and government. we have also been looking at consolidation in the industry. we have acquired  [satcoms provider] drs  and we’ve doubled down on our u.s. government business — a great acquisition and we’re really pleased with that.  we did look at other options, as we should. we tried to reach a good deal with intelsat over quite some period of time that didn’t work.  but we do believe in the logic of consolidation in the industry. we are on the record saying consolidation is a good thing in a disrupted industry like ours.  so it wasn’t connected with what happened with intelsat, or what didn’t happen? there wasn’t a single thing, and certainly not the negotiations with intelsat. the negotiations were difficult, otherwise intelsat and ses would have reached an agreement. in steve’s words, there is a shelf life to all ceos, and it was time for him to go, especially since he felt he was leaving ses in good hands.  how could the company’s strategy change under your leadership? there is no fundamental shift in the strategy i just outlined, but strategy is not fixed in time, as well. you can think of strategy as a budget. the moment you finalize a budget, the market and customers move on, and the budget has to be updated. the main tenets of our strategy are:  with the receipt of the c-band proceeds, which should happen this year, our balance sheet will have a good position in the industry, being an investment-grade company with good cash flows and money to invest in opportunities that are sensible. not throwing money out of the window, but being selective and objective on where we can invest in technology, partnerships, and products to leverage our strong financial position.  and of course, there’s competition from starlink, and future competition from project kuiper and telesat lightspeed. we also all expect  the deal between eutelsat and oneweb will close soon , so that will be another data point. and there’s also potential competition coming to meo, such as intelsat as it  explores options for this orbit . i’m very proud that intelsat has followed our strategy in meo. they’re endorsing what we have been thinking for quite some time — 10 years. but on a more serious side, firstly, they’re in a different frequency. intelsat have a lot of assets in ku-band.  and even if they were to give you a press release tomorrow with a firm commitment, it will take some time for them to get into orbit to learn what we have learned over the years, and get the experience in software, hardware, infrastructure, and ground segment.  i’m mindful, but i’m not losing any sleep over that. do you expect to decide soon on how to invest the c-band proceeds? rushing doesn’t necessarily help. we have to be quick once we make a decision, but we don’t necessarily need to be quick in reaching that decision on how best to deploy the capital that we will have.  a big source of current investment is o3b mpower. where are you in resolving the technical glitch you recently disclosed there? we have been working really hard with boeing and we have a way better understanding of this phenomena than we had two months ago. this gives us the confidence that we can provide the level of service that our customers expect, and that we expect from o3b mpower.  with a mix of operational [changes and] updates to the software, we can live with this phenomenon. it doesn’t impact the lifetime of those satellites as far as we know. the current plan is that we are on target to launch the next two in october. we did some small things on them that we hope to mitigate this phenomenon, but it’s not something that prevents us from getting o3b mpower working.  and that’s really good news. we are going to put in place a constellation with about 10 years of expected lifetime, so for the sake of one, two, or three months, it doesn’t detract us from doing the right thing.  you have seen  the unfortunate experiences that viasat has had  over the last two months as a sign that sometimes being a little bit more conservative, and really understanding how the technology performs in a harsh environment, pays off. what changes did you make to the two upcoming satellites? they are good things to do in terms of shielding and cabling. we don’t expect them to be a silver bullet for the phenomena we have observed, but they’re sensible things to do. of course, launching them gives boeing and us time to go from: now we understand what is happening to can i just prevent it from happening altogether on the following five satellites? are they packed up and ready for the launchpad? they’re not packed up yet, but if we’re going to meet a launch in october we’re going to have to ship them by the end of september. what is your take on the potential for price erosion from the masses of satellites launching in the coming years? when you have a competitor like starlink, which is increasing its capacity at a fast pace, the demand will continue being outstripped by the supply in certain geographies and markets, and that will drive price erosion. it’s just the nature of competition. but there will be other geographies and market segments. for the concentration of cruise ships in the mediterranean in the summer, the supply doesn’t meet the demand there. so we should be able to have profitable pricing in that geography and at that time, for example, and there are also hotspots in government and aviation. o3b mpower’s ability to shift capacity from a to b, based on need and time of day, allows us to provide a capability and flexibility that our customers will be willing to pay a premium for. it was interesting to see ses  partner with starlink  in the cruise market, which has been a stronghold for you. how did that deal come about? we were the first to launch on a reusable falcon 9, and we have discussed possible joint initiatives in the past. our customers in the cruise market have been saying, look, the market is evolving and there is a lot of demand for connectivity. we would like to have the starlink capability available for our ships — it’s not guaranteed, it may not have burst capacity or the flexibility that you have on meo, but we want it for certain applications. at the same time, we also want meo. given customers want the best of both worlds, and have been coming to us saying we want the capability that starlink brings, we decided to partner with starlink to sell this managed service to the market. we’re still giving our customers a choice. nobody is forcing them to go left or right, but going jointly to certain customers who want it is way better for both companies. and it’s a model that we may wish to discuss or replicate in very selective opportunities, markets or geographies. it doesn’t mean starlink will not compete directly with us in certain adjacent markets, and vice versa. we’ve seen intelsat and inmarsat  buy small satellites for their geostationary businesses  recently. are smaller, more regionally focused satellites in geostationary orbit (geo) also of interest to ses? we don’t have any short-term plans for geo replacements. we have time. but for our next neighbor slot where we need to replace our geo capacity, we are going to look at those options.  there is potential. if they can prove their viability, the price points, and the scale and flexibility, then of course we’re going to look at it. you have partnered with eutelsat to bid for a role in iris². are you concerned that their acquisition of u.k.-based oneweb could complicate what is a very european project? if that turns out to be an issue, it’s more of a eutelsat concern than ours. having said that, we are part of a team and we believe we have put together something that’s potentially very compelling for the european commission. this interview has been edited for length and clarity
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    tampa, fla. — spacex’s ability to quickly change and update services has been awkward for resellers, an executive for the low earth orbit (leo) broadband constellation said sep. 13. “it’s been challenging because we are so nimble,” starlink vice president of commercial sales jonathan hofeller said sept. 13, “and we have to be smarter about how [this] affects our resellers.” he said it’s not uncommon for spacex to want to add a starlink plan on a friday and then adopt it monday. “well, that affects our partners and we’re learning how to be better partners in that sense,” he said on a panel for world satellite business week in paris. however, he said starlink’s ability to iterate rapidly helps the company adapt to changing customer needs and plans.  the constant refining also enables starlink react to sudden events, such as natural disasters and other changes on a regional or global basis. spacex can also change and update starlink services at pace because the vertically integrated company builds and launches the satellites in-house.  after initially solely focusing on selling directly to consumers, starlink opened up to reseller channels about a year ago to help expand into markets including maritime, energy, and aviation. “we do have channel conflict,” hofeller said, “which is one of the things that we’re exploring and … figuring out how to work through.” but starlink is “also seeing that customers look for additional added services such as cybersecurity, install, customer support — above and beyond just great, raw, high-speed, low-latency capacity,” and so the company is “looking to our partners to provide that to the end customers.” starlink announced a partnership earlier in the day with ses, which operates a constellation of geostationary and medium earth orbit satellites, to provide a combined service for cruise lines. ses is taking the lead on selling and managing the joint offering, including antenna installation. the financials starlink now has more than 1.5 million customers worldwide, according to hofeller. while he did not discuss financials, he said the company is no longer subsidizing user antennas. starlink achieved $1.4 billion in revenues for 2022 compared with $222 million the year before,  reported the wall street journal sept. 13 , citing documents. according to the report, the company projected in a 2015 investor presentation that starlink would net nearly $12 billion in revenue for 2022 and have 20 million subscribers by the end of that year, as well as $7 billion in operating profit. last month, t he wall street journal reported  that spacex had made a $55 million profit for the first three months of 2023, following a loss for 2022. spacex has not commented on these reports. hofeller was asked during the conference about the failure rate for the more than 5,000 starlink satellites launched to date — tracked by third party  spaceflight observer jonathan mcdowell  — and he said he did not know this data. massimiliano ladovaz, oneweb’s chief technology officer, told conference delegates it had four failures after deploying more than 630 satellites for its constellation.  “obviously we would have loved not to have those four failures,” he said, but “considering that it’s newspace, it’s quite a low percentage.”
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           washington — u.s. chief of space operations gen. chance saltzman said the space force is finalizing a blueprint for how it will integrate commercial satellite services into military activities.  “one way we are enhancing our relationships with commercial partners is through a soon to be released commercial space strategy,” saltzman said sept. 13 at the global aerospace summit organized by the u.s. chamber of commerce.  “this new strategy will provide a unifying guidance to the force to achieve competitive advantage through commercial augmentation,” he said. the space force and the u.s. military at large rely on commercial companies for a wide range of peacetime and wartime services, but saltzman said there is need for specific guidance on emerging space industry services — such as rapid-revisit satellite imaging and low-earth orbit satellite communications — many of which have only become available in recent years. he characterized the current period as a “true golden era for commercial space.” “one way we are addressing future challenges is by exploring ways to better integrate commercial space,” saltzman said.  “commercial capabilities, services and activities are expanding rapidly. the competition we are seeing today in commercial space is driving innovation and the space force wants to harness these efforts,” he said. “we know our commercial partners are a big reason that we can out compete our adversaries.” “the speed and innovation offered by the commercial space sector can create a strategic advantage,” saltzman said. the goal of the strategy is to help harness that innovation, he added. “i’m hopeful it will be approved and published in the weeks to come.” ‘terms of reference’ saltzman said the new guidance will help clarify the role of commercial providers and how their capabilities might be integrated into military operations, he added. “we will have terms of reference that the space force has created to help our industry partners address the augmentation and integration of commercial space capabilities.” “my hope is that this will bring some clarity to the industry so that they can globally support and augment inherently governmental and military activities that we project from the space domain,” saltzman explained. “ as the conflict in ukraine has shown us , space is critical to modern warfare,” he said. “it has played a vital role in communications, precision navigation and timing, missile warning, command and control, intelligence surveillance and reconnaissance.” “commercial augmentation has proven its value during this conflict,” particularly in satellite-based surveillance. “it’s unclassified. it has promoted shareability it has enabled us to supplement classified data, he added. ‘fundamental conversation’ the commercial strategy is intended to help space force buyers and contractors speak the same language, saltzman said. “it’s important that we’re all having the same fundamental conversation. we have to define our terms.” for example, he said, “we define augmentation as the use of commercial space goods, services and activities to increase both capacity and resilience. similarly, we define what we mean by commercial activity, what is a critical function, what are inherently governmental functions, what tasks can be executed by the private sector.”  with regard to the protection of satellites during conflicts, saltzman noted that the space force intends to work with military allies and private companies to ensure collective security, enabled by data sharing. “going forward, all space users will be in the combat zone during a conflict. you cannot separate civilian and military assets in this domain. so we all share the risk if a war comes to space.” “we need to increase our collaboration with the commercial space industry to enable new capabilities that support integrated deterrence,” he said. this integration includes data sharing, and interoperability between our allies and industry partners.”
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         washington — united launch alliance, one of just two u.s. companies that provide national security launch services, does not have a problem with dod’s decision to add a third competitor, a senior ula executive said sept. 13. gary wentz, ula’s vice president of government and commercial programs, said the company is supportive of the u.s. space force’s proposed strategy to add a third heavy-lift launch provider in the next round of contracts, known as  national security space launch phase 3.  “from what we saw relative to lane 2 and the addition of a third provider, we didn’t see any issues with that,” wentz said during a panel discussion at the global aerospace summit organized by the u.s. chamber of commerce. currently ula and spacex are the only nssl launch providers. due to concerns about growing commercial demand, the space force said it plans to select a third provider in lane 2 of nssl phase 3, creating an opportunity for a new entrant like blue origin which is developing a heavy rocket.  lane 2 providers have to be able to fly to low, medium and high orbits. of the  58 missions expected to be procured under lane 2, seven — five gps satellite launches to medium earth orbit and two direct-to-geostationary orbit launches — will be set aside for a third provider, space force officials said. ula’s ceo tory  bruno in july expressed concerns  about the phase 3 strategy and said he was still reviewing the details. one of bruno’s concerns was that “it’s not a competition if everybody wins.” a ula spokesperson in a statement sept. 13 noted that bruno in an interview last month with  aviation week  said :  “we understand the government’s need to have a broader industrial base at this time of challenge … so we’re ok with the third provider,”  the spokesperson said bruno had concerns about other points in the draft request for proposals not related to a third provider. wentz said the company reviewed the latest draft solicitation and is on board with the plan to add a third provider. he noted that there are now more missions in lane 2 than had been previously forecast so allocating seven to a third provider seems reasonable. “so we support it,” he said.  blue origin ‘looking at the rfp’ blue origin’s vice president of government sales lars hoffman — also speaking at the chamber of commerce event — said the company continues to work with the space force to develop a plan to certify the new glenn rocket for nssl after it starts flying — which the company projects will happen in 2024. “we’ve been doing that for a while,” said hoffman. “so we’re actively engaged with them on that front. things are progressing very nicely and, obviously, we’re looking at the draft requests for proposals that have come out.” hoffman did not say definitively that blue origin will submit a proposal for a lane 2 contract.  with regard to the development of new glenn, he said, “we’ve got more boosters, we’ve got three fairings. a lot of work is going on down at the  florida manufacturing complex .” “we’re on track for launch next year,” hoffman said. 
##          author       date postexcerpt
## 1    Jeff Foust 2023-09-14            
## 2 Jason Rainbow 2023-09-13            
## 3 Jason Rainbow 2023-09-13            
## 4  Sandra Erwin 2023-09-13            
## 5  Sandra Erwin 2023-09-13

podemos pensar que la columna ‘postexcerpt’ va a estar vacía en todo el conjunto y la podríamos eliminar pues no aporta nada. Sin embargo, si mostramos los últimos 5 elementos

tail(datos_space_limpios, 5)
##                                                                              title
## 19580                  Kendall lays out Pentagon thinking on future space programs
## 19581 A larger share of NOAA’s declining space budget would go to polar satellites
## 19582                Think Tank Turns Its Attention To Mars As 2016 Election Looms
## 19583                        House Bill Leaves Last Three JPSS Satellites in Lurch
## 19584                          Championing a Climate Change for Commercial Weather
##                                                                                                      url
## 19580                                                       https://spacenews.com/frank-kendall-at-wsbr/
## 19581 https://spacenews.com/a-larger-share-of-noaas-declining-space-budget-would-go-to-polar-satellites/
## 19582               https://spacenews.com/think-tank-turns-its-attention-to-mars-as-2016-election-looms/
## 19583                      https://spacenews.com/no-money-for-noaa-weather-satellite-plan-in-house-bill/
## 19584                       https://spacenews.com/championing-a-changing-climate-for-commercial-weather/
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       content
## 19580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \nfrank kendall, the pentagon’s top acquisition official, spoke to the washington space business roundtable feb. 23, offering insight into how the u.s. defense department is approaching some of the military space community’s long-standing concerns. kendall is the undersecretary of defense for acquisitions, technology and logistics, and as such is a key player in shaping the air force’s spending on space. in a wide-ranging speech, kendall discussed the need for assured access to space, how the pentagon plans to end its reliance on russian rocket engines and whether importing those rd-180 engines violate u.s. sanctions. he explained how the defense department plans to better understand what commercial satellite providers and the pentagon can work more closely in the coming years. he also touched on the future of two of the air force’s most valuable satellite programs:  the space based infrared system used for missile warning, and the advanced extremely high frequency satellites used for protected communication. the video presented here was produced by spacenews with support from  lockheed martin . \n
## 19581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     updated feb. 10 at 10:18 p.m. eastern the u.s. national oceanic and atmospheric administration’s campaign to sustain its fleet of polar-orbiting environmental satellites would receive more money next year even as noaa’s overall space spending would dip slightly under the 2017 budget plan the white house sent congress feb. 9. u.s. president barack obama is asking for $393 million in 2017 to fund work on future polar-orbit satellites. congress appropriated $370 million in 2016 for polar follow-on, an initiative to begin building two final spacecraft for the joint polar satellite system (jpss), an environmental monitoring constellation. noaa plans to launch jpss-1 in 2017 and jpss-2 in 2021. with the additional $23 million proposed in 2017, noaa would be able to continue work on jpss-3 and jpss-4, while taking steps to mitigate the risk that a premature failure of jpss-2 would cause a gap in critical weather data used in forecasts and warnings. in case jpss-2 fails to launch or its instruments malfunction, noaa is preparing contingency plans for a launch of jpss-3 in 2023, a year earlier than planned, with only two of its four instruments. in that contingency, the advanced technology microwave sounder and cross-track infrared sounder would travel into orbit on jpss-3 and the other two instruments being built for the jpss-3 mission, the visible infrared imaging radiometer suite and the ozone mapping profiler suite-nadir, would be integrated on jpss-4, according to noaa budget documents, for its geostationary weather satellite constellation, noaa is requesting $752.8 million in 2017, $85 million less than it requested in 2016, to continue work to build and launch four goes-r series satellites. the first in that series is scheduled for launch in october 2016, according to the budget. overall, noaa’s satellite budget would dip slightly if congress approves the president’s plan. noaa is requesting $2.3 billion for its national environmental satellite, data and information service, about $49 million less than it received in 2016. noaa is seeking $3.75 million, an increase of $1.45 million, for its deep space climate observatory, the space weather mission based on a satellite designed originally as an earth observation spacecraft during the clinton administration and stored for about 10 years before its launch in february 2015. “as noaa has experienced more frequent anomalies than anticipated on dscovr, the satellite has required more time, engineering, analysis, and support than envisioned years ago when the mission was initiated,” according to the budget document. nevertheless, noaa will rely on dscovr to provide space weather observations from the spring of 2016 through 2022. under the agency’s space weather follow on program, noaa plans to begin drafting requirements in 2017 to launch two satellites each carrying two sensors to obtain solar wind data and imagery of coronal mass ejections. the budget blueprint asks congress for $2.5 million for the space weather follow on program in 2017, more than twice the $1.2 million appropriated for the effort in 2016. in contrast, noaa is asking congress for only $8.1 million in 2017 for the u.s.-taiwan cosmic-2 constellation of 12 gps radio occultation satellites, $2 million less than the 2016 budget. noaa plans to obtain data from these satellites and use it in noaa’s weather forecasts. the first six satellites, known as cosmic-2a, are scheduled to launch in 2016 on the second demonstration flight of spacex’s falcon heavy rocket. the new budget plan reveals for the first time that noaa is considering the idea of purchasing radio occultation data from commercial firms preparing to offer that type of data instead of launching a second batch of six sensors in fiscal year 2020. “with this request, noaa will continue to explore options to acquire global navigation satellite system radio occultation data from the polar orbit,” according to the noaa budget document known as the blue book. “this will include evaluating a purchase of commercially available data as well as investigating launch vehicle options and sustaining the international partnership with taiwan to support a noaa-built second set of sensors.” in another sign of the agency’s growing interest in purchasing weather data from commercial satellite operators, noaa will “seek opportunities to test and validate data from commercial satellite systems and, if testing is successful, support pilot commercial data buys for operational use,” the budget document adds.
## 19582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    washington — as nasa develops a long-term strategy to support human missions to mars, one think tank is turning its attention to how to make that strategy sustainable into the next presidential administration and beyond. a forum on human space exploration, hosted by the center for american progress here june 3, was the organization’s first major foray into space policy, but one that officials there say will not be their last. “what we’re really trying to do in this program today is to frame the big building blocks that can lead to consensus,” said rudy deleon, senior fellow at the center for american progress, who organized the 90-minute event. “we can then see how those decisions, that consensus, can lead to an executable program with clear objectives and goals.” that interest comes as nasa refines its “journey to mars” strategy for human spaceflight. that approach starts with current activities in low earth orbit and runs through a “proving ground” of missions in the vicinity of the moon before human expeditions to mars some time in the 2030s. despite criticism from some quarters about a lack of current details about how to implement that plan, panelists at the event had few problems with it. “it’s a perfectly reasonable scenario,” said maria zuber, vice president for research at the massachusetts institute of technology and a planetary scientist who has been involved with nasa robotic mars missions. “i think nasa has done an extraordinarily good job of laying out the technology path and the key milestones along the way to achieve the outcome,” said wes bush, chief executive and president of northrop grumman. “they’ve answered, i think, the ‘can we’ question.” a bigger issue than the technical feasibility of human mars exploration, they argued, is the political sustainability of nasa’s plans, including whether it will survive the change in administrations after the 2016 presidential elections. “nasa, in and of itself, can’t answer the ‘will we’ question,” bush said. “that has to be on the national agenda. we have to come together as a country — and it should be nonpartisan — and decide yes, we’re going to do this, we’re going to make this happen.” “this has been nasa’s challenge all along,” zuber said of the risk of changing political priorities. “the idea of doing something like a mission to mars is not something we ought to be changing every four years.” peter juul, a policy analyst at the center for american progress who works primarily on middle east issues but spends some time on space policy, said he believes there has been some progress in building support for a human mars mission. “there does seem to be a little more coherence around getting a person to martian orbit, at least, by the 2030s,” he said. the event, though, offered no clear solution for creating that political consensus. the session instead attempted to cover a wide range of issues, from motivating students to pursue science and engineering careers to the radiation hazards of human mars missions. it also included a keynote address by secretary of the air force deborah lee james, who primarily discussed military space policy, not human spaceflight. notably absent on the panel was nasa. “our hope is that we’ll be doing a follow-up program with nasa, and also some of the entrepreneurs who have been talking about reinvigorating our efforts in space,” deleon said. deleon, a former deputy secretary of defense, emphasized the importance, and the difficulty, of developing agreement on why nasa should send humans to mars. “the details of the line items are very important because that’s operationally how you’re going actually to do it,” he said. “but creating the consensus to do a major policy initiative is often more difficult.” while the event didn’t answer the question of how to develop that consensus, deleon was optimistic it could be done. “the challenge is to go forward and earnestly start this debate,” he said. “the country understands that a trip to mars is within our grasp.”
## 19583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     washington — a spending bill the house passed june 3 would give the national oceanic and atmospheric administration about $5 billion for 2016, but not a cent of the $380 million the agency sought to begin work on the final three joint polar satellite system (jpss) spacecraft. the roughly $5 billion noaa budget proposed in the house appropriations committee’s 2016 commerce, justice, science appropriations bill (h.r. 2578) matches the administration’s request for the agency’s satellite programs in nearly every other respect, fully funding requests for jpss-1 and jpss-2 and the geostationary operational environmental satellite (goes)-r. however, the bill now heads to the senate without funding noaa’s polar follow-on program, which includes jpss-3, jpss-4 and a miniature polar-orbiter that would would launch sometime between those two spacecraft as a redundancy measure. under the 2016 budget request the white house released in february, these final three jpss satellites would begin launching in 2024 and maintain global weather coverage through at least 2038. if the house bill becomes law, it would fund no jpss satellites after jpss-2, which is designed to maintain coverage through 2025.  rep. susan bonamici (d-ore) wanted to include the $380 million the white house requested to start work on the final three jpss satellites in 2016. however, she said “the funding levels in this bill [h.r. 2578] are stretched so thin that it’s impossible for me to find more than $300 million to find an offset.” credit: spacenews screen capture of c-span video during floor debate june 2, rep. susan bonamici (d-ore.) filed, but immediately withdrew, an amendment that would have provided the $380 million the white house sought to begin work on the last three jpss spacecraft. the amendment stood no chance of passage and would have been cut down on procedural grounds because bonamici did not offset her proposed increase for the jpss program with cuts elsewhere. sending h.r. 2578 to the senate without polar follow-on money amounts to a house rejection of of the jpss gap mitigation plan the administration rolled out in february in its annual budget request. to avoid a gap in global weather coverage in case future jpss satellites are lost during launch or fail early on orbit, noaa planned to build a free-flying gap-filler satellite that would launch in 2019 and carry a single sensor similar to a miniaturized version of  the advanced technology microwave sounder  northrop grumman electronic systems of azusa, california, is now building for jpss-1. as a backup to the backup, noaa said in the request it could launch a scaled-back jpss-3, which would carry only two of the usual four jpss instruments, earlier than its notional 2024 launch date. “we support the noaa weather satellite program which is why the bill includes $1.8 billion for weather satellite procurement, over $800 million of which is for the joint polar satellite system program,” culbertson wrote in a june 4 statement. “given the subcommittee’s allocation, difficult funding decisions had to be made.” the white house, which has already threatened to veto the bill as written, isn’t buying that. “not only would the bill heighten the risk of a gap in satellite coverage, but its shortsighted reductions mean that the next generation of polar-orbiting weather satellites would cost taxpayers more,” the obama administration wrote in a statement of administration policy released june 1, a day before floor debate began on h.r. 2578. in total, the house’s bill would give noaa about $5.2 billion for 2016: some 5 percent less than the agency has for 2015, and nearly 14 percent less than the white house requested this year. satellite procurement accounts for fully a third of the house’s total proposed noaa appropriation, and the difference between the satellite-procurement request and the house’s proposal is almost entirely accounted for by the omission of polar follow-on funding. aside from the the notable omission of funds for the final three jpss satellites, the house more or less matched the white house’s procurement requests for the rest of noaa’s satellite portfolio. the house approved the roughly $810 million noaa seeks in 2016 for jpss-1 and jpss-2 and also matched the 2016 request for the agency’s other big satellite program, the geostationary operational environmental satellite (goes)-r series, at about $980 million. jpss satellites cover the entire planet as they orbit earth’s poles, but goes satellites keep watch only on the u.s. coastlines. jpss-1 would launch in 2017, while jpss-2 would lift off in 2021. those two satellites would maintain coverage through 2025. goes-r, the first in a series of four geostationary weather spacecraft, is slated to launch by march 31, 2016. the series would keep watch on u.s. coasts through 2036. smaller noaa satellite programs also fared well in the house’s bill, including the u.s.-taiwanese cosmic-2 series of gps radio occultation satellites, which determine moisture and temperature levels by measuring atmospheric distortion of gps signals. the program would receive the $20 million the white house sought for 2016, nearly double what it got for 2015. that total includes $10 million for cosmic-2 ground systems. cosmic-2 will launch in two tranches of six. the first group, launching in 2016 will operate in a 24-degree low earth orbit. the second, launching in 2019, is headed to a 72-degree low earth orbit. cosmic-2 is a follow on to the six-satellite cosmic constellation that launched in 2006 and is expected to cost about $420 million, split evenly between the partners. other noaa satellite programs for which the house bill meets the administration’s request are: • the deep space climate observatory: a space-weather satellite that launched in february. with only operations left to pay for, the program’s budget in 2016 would drop nearly 85 percent compared with the 2015 appropriation to $3.2 million. • the jason-3 ocean altimetry satellite, awaiting launch later this summer. the u.s.-french spacecraft is the fourth in a series of international ocean altimetry measurement missions and would receive about $7.5 million in 2016 — a roughly 68 percent decline from 2015 that is typical of a program finished with development and on the cusp of operations. • space weather follow-on: an account that would receive the requested $2.5 million in study money for a space weather satellite to succeed the deep space climate observatory, which is slated to operate at the gravitationally stable earth-sun lagrange point 1 for five years. finally, the house bill would delete the solar irradiance, data and rescue program from the noaa ledger. the program sought to find a home for climate, search and rescue, and marine fauna-tracking sensors orphaned after the white house cancelled the joint civil-military polar-orbiting weather satellite program that preceded jpss.
## 19584 u.s. rep. jim bridenstine (r-okla.) is a growing presence in the washington space policy scene. the 39-year-old sophomore from tulsa made a splash in his first term as an  ally for the budding commercial weather satellite industry , and his voice on this issue only figures to carry more weight in his second term. that is because bridenstine has been appointed chairman house science environment subcommittee, which oversees the national oceanic and atmospheric administration — operator of u.s. civilian weather satellites and prospective anchor customer for commercial weather companies that have yet to commit to satellite orders and launches. but bridenstine’s first act on the space policy stage in 2015 came on the military side during a jan. 28 hearing of the house armed services committee, where he is one of the more junior members. bridenstine used his first chance at the microphone to ping pentagon acquisition czar frank kendall on the defense department’s plans for commercial communications satellites. that space in general, and commercial satellites in particular, have become a signature bridenstine issue is something of a surprise even to the congressman himself. bridenstine admits space was “not at all” on his agenda when he cruised into washington in 2013 after an upset victory in the republican primary for the gop-heavy first district of oklahoma. however, bridenstine is not a complete newcomer to space. prior to his election, the former naval aviator was the executive director of the tulsa air and space museum, where he led what he acknowledged was a “long shot” bid to win one of nasa’s retired shuttle orbiters. he was also involved with the short-lived rocket racing league, which tried to apply the business model of auto racing to rocket planes. although the rocket racing league held demonstration flights at a 2010 air show in tulsa that bridenstine helped organize, the venture failed to take off. “it was before its time,” he lamented. now, having secured a second two-year term after running unopposed, bridenstine looks to continue both his service on the house science and armed services committees and his push to privatize any part of the u.s. space enterprise that appears ripe for it. high on bridenstine’s to-do list in 2015 is reintroducing the weather forecasting improvement act, which aims to ease restrictions on integrating commercial data into u.s. weather forecasting models. a version of the bill passed the house last year only to stall in the senate — not a bad run, considering it was only the third bill bridenstine had introduced in his capitol hill career. should the measure become law this time around, it would clear some hurdles for planetiq and geooptics, which aim to launch gps radio occultation satellites to augment data gathered by the keystone u.s. weather satellites in the joint polar satellite system (jpss) and geostationary operational environmental satellite (goes)-r series. \nbridenstine spoke recently with  spacenews  staff writers jeff foust and dan leone. why are you interested in commercial weather satellite data? oklahoma has extreme weather events as much as any other state. in may of 2013, we had one very large tornado that killed 24 people and did $2 billion damage. it resulted in a keen interest of mine to do what i could to be effective for the lives and safety of my constituents. then i started to hear about a pending gap in polar-orbiting satellites that could, according to noaa, prevent us from detecting up to 25 percent of severe weather events, which, in the state of oklahoma, is extremely scary. i decided to learn as much as i could about how we could not only mitigate that gap but make sure in the future that these kinds of gaps don’t arise. that’s a scenario that we just can’t afford in the state of oklahoma. why do you think your weather forecasting improvement act died in the senate last year? did it run into opposition or just run out of time? i don’t know of any opposition in the senate. i just think they had different priorities they were trying to accomplish that didn’t include this particular bill. i think it was about timing. i think in the 114th congress it’ll have a good shot at passing. what effect would your bill have on the jpss and goes-r programs? first, i think jpss and goes need to go forward as planned. those programs need to be fully funded. we need to make sure we’re not doing any harm to our current numerical weather models. but we need to start pilot approaches for things like commercial gps radio occultation satellites that can augment current data and potentially lead us to a day where we are not so reliant on billion-dollar, monolithic satellites. but if next decade we need a jpss-3, if that’s what’s required, my goal is not to stop that from happening. planetiq has suggested noaa pare the u.s.-taiwan cosmic-2 gps radio occultation project down to six satellites. do you think noaa should launch all 12 cosmic-2 satellites as planned? nobody has come to me and lobbied me telling me they shouldn’t. i think if cosmic-2 is necessary to get that done, i don’t have a problem with that. even if they launch cosmic-2, there is still a market for more gps radio occultation data. we in congress are going to make an effort to put forth a little bit of money for noaa to purchase that data. it probably won’t be sufficient to launch an entire new private gps radio occultation constellation, but it would be enough to suggest that there is a market here for entrepreneurs who are interested in providing capital to launch, and prove that they can. the 2015 national defense authorization act directed the pentagon to study whether the commander of the air force space and missile systems center should be in charge of all military satellite communications procurement, whether for dod satellites or commercial bandwidth. do you think that’s the right approach? yes. i think the direction we need to go as a nation is to have somebody manage satellite communications for the military that establishes the perpetual demand for military satellite communications and can ultimately transform the process from commercial satellite communications and military satellite communications to just satellite communications. and i think the head of air force space command, gen. john hyten, has that on his agenda. the 2015 defense authorization also banned u.s. use of the atlas 5’s russian-made rd-180 engine for national security launches beyond 2019.  is that the right move? i think it’s appropriate for us to not rely on a russian engine. there are people out there who would suggest that we need to build our own liquid engine. other people would say we can use solid rockets. i’m not going to speculate on which is the right answer, but i do think it’s important for us as a nation not to rely on a russian engine. what’s on the house’s agenda for nasa this year and next? i think we’ll do a nasa authorization bill, and certainly i think the space launch system and orion are going to be funded as they have been funded. i would hope they don’t slip any more than they already have, but certainly our objective needs to be to move forward with those programs in a way that advances human spaceflight capabilities like those we used to have. where do you think nasa should go when it next sends crews beyond earth orbit? which destination do you like best? i’ll tell you what i don’t like: i don’t like the infighting over what the destination may or may not be. i think we need to figure out what our destination is, we need to all resolve to make that our objective and we need to move forward given the constraints of the budget and nasa needs to focus like a laser on accomplishing that objective. whether that objective needs to first be the moon or whether it needs to be going to mars or a moon of mars, i, quite frankly, am agnostic. but an asteroid redirect mission, from a lot of the testimony i’ve heard, is not the right answer. i have read a lot of reports and heard expert testimony that this particular mission results in dead-end technologies that ultimately we can’t benefit from. i think that limits our ability to focus on what our objective is. what commercial space legislation needs to happen this congress? we need to move forward with the same indemnification that has enabled commercial space to prosper thus far. we need to move forward with the same lenient regulatory policy that ultimately enables commercial space to get off the ground. we don’t want to stop the industry before it even gets started. we need to enable it, not restrict it. after the virgin galactic and orbital sciences accidents last year, did you or your house science colleagues begin to doubt commercial spaceflight companies? i haven’t heard any of that. i think people understand that space is extremely difficult, that it’s necessary, and that we’ve got to keep moving forward. i think people who operate in the commercial sphere know and understand the challenges and the risks. i think that stopping the direction that we’re going is only going to result in more problems, not less.
##                author       date
## 19580 SpaceNews Staff 2016-02-25
## 19581    Debra Werner 2016-02-10
## 19582      Jeff Foust 2015-06-11
## 19583       Dan Leone 2015-06-04
## 19584      Jeff Foust 2015-02-18
##                                                                                                                                                                                                                                                                                            postexcerpt
## 19580                                          Frank Kendall, the Pentagon’s top acquisition official, spoke to the Washington Space Business Roundtable Feb. 23, offering insight into how the U.S. Defense Department is approaching some of the military space community’s long-standing concerns. 
## 19581 The U.S. National Oceanic and Atmospheric Administration’s campaign to sustain its fleet of polar-orbiting environmental satellites would receive more money next year even as NOAA’s overall space spending would dip slightly under the 2017 budget plan the White House sent Congress Feb. 9.
## 19582                                                                                  As NASA develops a long-term strategy to support human missions to Mars, one think tank is turning its attention to how to make that strategy sustainable into the next presidential administration and beyond.
## 19583                                                                             A spending bill the House passed June 3 would give NOAA about $5 billion for 2016, but not a cent of the $380 million the agency sought to begin work on final three Joint Polar Satellite System (JPSS) spacecraft.
## 19584                                                                                                                                   Rep. Jim Bridenstine, who emerged in 2014 as a central figure in the budding commercial weather satellite business, is poised to exert more influence in 2015.

se observa que no siempre esta vacía. Por lo tanto, vamos a dividirlo en dos DataSets nuevos, uno para los que tengan incluido el resumen y otro para los que no tengan dicho resumen. De esta forma, preparamos un conjunto de entreanmiento para poder generar resúmenes para las noticias que no lo tengan ya que más tarde intentaremos completar todas las columnas para que tengan resumen.

# Subset con la última columna con datos
datos_space_con_extracto <- datos_space_limpios[datos_space_limpios$postexcerpt != "", ]

# Subset con la última columna vacía
datos_space_sin_extracto <- datos_space_limpios[datos_space_limpios$postexcerpt == "", ]

Como data_space_sin_extracto ahora tiene la última columna vacía podemos eliminarla.

datos_space_sin_extracto_limpios <- datos_space_sin_extracto[, -ncol(datos_space_sin_extracto)]

Análisis exploratorio de datos

Ya tenemos el dataset con el que vamos a comenzar a trabajar. Ahora haremos un análisis exploratorio de datos con el objetivo de entender mejor los datos antes de aplicar modelos estadísticos o algoritmos de aprendizaje automático.

Autores

Veamos cuántos autores distintos tenemos.

# Obtener la lista de los distintos autores
autores_distintos <- unique(datos_space_limpios$author)

# Calcular el numero de autores distintos
num_autores <- length(autores_distintos)

# Mostrar el resultado
print(num_autores)
## [1] 648

Tenemos 648 autores que han participado en la redacción de noticias espaciales. No se pueden analizar todos debido a la gran cantidad, por lo que posteriormente se analizarán los más importantes.

Para ello vamos a comprobar la frecuencia de cada autor.

# Frecuencia de los autores en el dataset
frecuencia_autores <- table(datos_space$author)

# Ordenar las frecuencias de mayor a menor en el dataset
frecuencia_autores_ordenada <- sort(frecuencia_autores, decreasing = TRUE)

# Mostrar la frecuencia de cada autor
print(frecuencia_autores_ordenada)
## 
##                                         Jeff Foust 
##                                               4865 
##                                Peter B. de Selding 
##                                               2539 
##                                       Sandra Erwin 
##                                               2438 
##                                       Debra Werner 
##                                               1489 
##                                        Caleb Henry 
##                                               1172 
##                                    SpaceNews Staff 
##                                                878 
##                                          Dan Leone 
##                                                795 
##                                         Mike Gruss 
##                                                789 
##                                      Jason Rainbow 
##                                                729 
##                                       Andrew Jones 
##                                                476 
##                                   SpaceNews Editor 
##                                                372 
##                                       Brian Berger 
##                                                248 
##                                     Warren Ferster 
##                                                244 
##                                     Turner Brinton 
##                                                196 
##                                        Amy Klamper 
##                                                172 
##                                        Park Si-soo 
##                                                125 
##                                     Phillip Swarts 
##                                                116 
##                                        Irene Klotz 
##                                                112 
##                                      Leonard David 
##                                                 78 
##                                          SpaceNews 
##                                                 70 
##                                         Amy Svitak 
##                                                 68 
##                                          Mike Wall 
##                                                 61 
##                                     David Pugliese 
##                                                 53 
##                                   Tereza Pultarova 
##                                                 49 
##                                     K.S. Jayaraman 
##                                                 39 
##                                        Denise Chow 
##                                                 38 
##                                 Robert Z. Pearlman 
##                                                 35 
##                                    Clara Moskowitz 
##                                                 33 
##                                   Andrew Parsonson 
##                                                 30 
##                                 Jarosław Adamowski 
##                                                 29 
##                                         Mike Fabey 
##                                                 29 
##                                  Jonathan Charlton 
##                                                 21 
##                                     Matthew Bodner 
##                                                 21 
##                                   Intelsat General 
##                                                 19 
##                               Paul Kallender-Umezu 
##                                                 19 
##                                 Barbara Opall-Rome 
##                                                 18 
##                                        Robert Bell 
##                                                 17 
##                                      Brian G. Chow 
##                                                 15 
##                                      Florida Today 
##                                                 15 
##                                        Tariq Malik 
##                                                 15 
##                                Donald F. Robertson 
##                                                 11 
##                                       Brian Weeden 
##                                                 10 
##               Jeff Foust, special to SpaceNews.com 
##                                                 10 
##                                      Robert Zubrin 
##                                                 10 
##                                   Rachel Bernstein 
##                                                  9 
##                                  Houston Chronicle 
##                                                  8 
##                                         Jeremy Hsu 
##                                                  8 
##                                  Marcus Weisgerber 
##                                                  8 
##                                        RIA Novosti 
##                                                  8 
##                                     Rick Tumlinson 
##                                                  8 
##                                   Shelli Brunswick 
##                                                  8 
##                                The Washington Post 
##                                                  8 
##                                Titus Ledbetter III 
##                                                  8 
##                                         Greg Autry 
##                                                  7 
##                                        James Wertz 
##                                                  7 
##                           Miriam Kramer, Space.com 
##                                                  7 
##                                            Reuters 
##                                                  7 
##                                         Dean Cheng 
##                                                  6 
##                                       Kate Brannen 
##                                                  6 
##                                       Megan Gannon 
##                                                  6 
##                                 Michael J. Listner 
##                                                  6 
##                                      Miriam Kramer 
##                                                  6 
##                            Rebecca M. Cowen-Hirsch 
##                                                  6 
##                                      Rob Coppinger 
##                                                  6 
##                                     Space Politics 
##                                                  6 
##                                    Washington Post 
##                                                  6 
##                                      Andrea Shalal 
##                                                  5 
##                                     Charles Beames 
##                                                  5 
##                                      Christian Zur 
##                                                  5 
##                                 Jennifer A. Manner 
##                                                  5 
##                                 Joshua C. Huminski 
##                                                  5 
##                                     Linda Billings 
##                                                  5 
##                                  Miriam Klaczynska 
##                                                  5 
##                                       Misuzu Onuki 
##                                                  5 
##                              Thomas “Tav” Taverney 
##                                                  5 
##                                 Thomas D. Taverney 
##                                                  5 
##                                         Tory Bruno 
##                                                  5 
##                              U.S. Rep. Brian Babin 
##                                                  5 
##                                                AFP 
##                                                  4 
##                                    Andrea Thompson 
##                                                  4 
##                                     Chris Carberry 
##                                                  4 
##                                    Daniel N. Baker 
##                                                  4 
##                                       Dylan Taylor 
##                                                  4 
##                                       Eric Johnson 
##                                                  4 
##                                Joan Johnson-Freese 
##                                                  4 
##                                    John T. Bennett 
##                                                  4 
##                                          Jon Morse 
##                                                  4 
##                                     Louis Friedman 
##                                                  4 
##                                    Luca Rossettini 
##                                                  4 
##                                   Mark Whittington 
##                                                  4 
##                                     Michael Krepon 
##                                                  4 
##                                    Michael Listner 
##                                                  4 
##                               Mike Wall, Space.com 
##                                                  4 
##                                     New York Times 
##                                                  4 
##                                   Orlando Sentinel 
##                                                  4 
##                                   Robbie Schingler 
##                                                  4 
##                                         Scott Pace 
##                                                  4 
##                               The Orlando Sentinel 
##                                                  4 
##                                             Xinhua 
##                                                  4 
##                                          Ajey Lele 
##                                                  3 
##                                  Amir S. Gohardani 
##                                                  3 
##                                          Bloomberg 
##                                                  3 
##                                Brandon J. Weichert 
##                                                  3 
##                                   Burak Ege Bekdil 
##                                                  3 
##                                       Carie Lemack 
##                                                  3 
##                                    Charles Q. Choi 
##                                                  3 
##                                       Chris Quilty 
##                                                  3 
##                               Clara Moskowitz (53) 
##                                                  3 
##                                        Doug Mohney 
##                                                  3 
##                                      Eric Stallmer 
##                                                  3 
##                                      Frank A. Rose 
##                                                  3 
##                                          ITAR-TASS 
##                                                  3 
##                                    J. Armand Musey 
##                                                  3 
##                                         Jenny Deam 
##                                                  3 
##                                      John Thornton 
##                                                  3 
##                                       Mark Sundahl 
##                                                  3 
##                                 Marshall H. Kaplan 
##                                                  3 
##                                 Mary Lynne Dittmar 
##                                                  3 
##                                        Mike Rogers 
##                                                  3 
##                                     O. Glenn Smith 
##                                                  3 
##                       Rajeswari Pillai Rajagopalan 
##                                                  3 
##                      Raytheon Intelligence & Space 
##                                                  3 
##                               Rep. Jim Bridenstine 
##                                                  3 
##                                   Robert S. Walker 
##                                                  3 
##                                   Sandra H. Magnus 
##                                                  3 
##                                       Sarah Chacko 
##                                                  3 
##                                      Sarah Mineiro 
##                                                  3 
##                                        Sean Reilly 
##                                                  3 
##                                         Sita Sonty 
##                                                  3 
##                                       Steven Wolfe 
##                                                  3 
##                                         Tony Quine 
##                                                  3 
##                                         Wayne Hale 
##                                                  3 
##                                              Wired 
##                                                  3 
##                                Zachary Fryer-Biggs 
##                                                  3 
##                                     a.i. solutions 
##                                                  2 
##                                         Adam Keith 
##                                                  2 
##                                         Adam Routh 
##                                                  2 
##                                         Alan Stern 
##                                                  2 
##                                       Alden Munson 
##                                                  2 
##                                 All Things Nuclear 
##                                                  2 
##                                   Anatoly Medetsky 
##                                                  2 
##                                    Andrew Williams 
##                                                  2 
##                                  Antony Phillipson 
##                                                  2 
##                                      Anusuya Datta 
##                                                  2 
##                                      Aviation Week 
##                                                  2 
##                                               Avio 
##                                                  2 
##                                           BBC News 
##                                                  2 
##                                         Bill Beyer 
##                                                  2 
##                                      Blaine Curcio 
##                                                  2 
##                                       Bob Richards 
##                                                  2 
##                                             Boeing 
##                                                  2 
##                                       Casey Dreier 
##                                                  2 
##                                           CBS News 
##                                                  2 
##                                       Chris Bogdan 
##                                                  2 
##                         Clara Moskowitz, Space.com 
##                                                  2 
##                                      Clemens Rumpf 
##                                                  2 
##                                      Dan Dumbacher 
##                                                  2 
##                                    Darren McKnight 
##                                                  2 
##                                     Dave Finkleman 
##                                                  2 
##                                   David F. Melcher 
##                                                  2 
##                                    David Finkleman 
##                                                  2 
##                                      David Logsdon 
##                                                  2 
##                                     Discovery News 
##                                                  2 
##                                         Doug Cooke 
##                                                  2 
##                                    Douglas Loverro 
##                                                  2 
##                                      Edward Hujsak 
##                                                  2 
##                                    Eric R. Sterner 
##                                                  2 
##                                             Forbes 
##                                                  2 
##                                     Frank LoBiondo 
##                                                  2 
##                                       Frank Slazer 
##                                                  2 
##                                        Gary Oleson 
##                                                  2 
##                                       George Nield 
##                                                  2 
##                                 George S. Robinson 
##                                                  2 
##                                  George Whitesides 
##                                                  2 
##                                     Grant Anderson 
##                                                  2 
##                                      Harry Corlett 
##                                                  2 
##                                    Ian Christensen 
##                                                  2 
##                                    Ian Fichtenbaum 
##                                                  2 
##                                           Jack Kim 
##                                                  2 
##                                  Jaganath Sankaran 
##                                                  2 
##                                   James E. Dunstan 
##                                                  2 
##                                         James Gill 
##                                                  2 
##                                     James M. Knauf 
##                                                  2 
##                                         Jerry Grey 
##                                                  2 
##                                       Jim Cantrell 
##                                                  2 
##                                   Jim Kohlenberger 
##                                                  2 
##                                     Jim McElhatton 
##                                                  2 
##                                      Joe Mroszczyk 
##                                                  2 
##                                    John B. Sheldon 
##                                                  2 
##                                         John Young 
##                                                  2 
##                                   Jonathan H. Ward 
##                                                  2 
##                                          Kay Sears 
##                                                  2 
##                                      Lance W. Lord 
##                                                  2 
##                                Las Cruces Sun-News 
##                                                  2 
##                                         Leah Crane 
##                                                  2 
##                                         Liz Pillow 
##                                                  2 
##                                          Lon Rains 
##                                                  2 
##                                  Los Angeles Times 
##                                                  2 
##                                  Louis D. Friedman 
##                                                  2 
##                                     Maxime Puteaux 
##                                                  2 
##                              Michael Lopez-Alegria 
##                                                  2 
##                                        Mike Bowker 
##                                                  2 
##                                Milton "Skip" Smith 
##                                                  2 
##                                     Nancy Colleton 
##                                                  2 
##                                      Nobuhiro Kubo 
##                                                  2 
##                                   Paul G. Kaminski 
##                                                  2 
##                                        Rajeev Suri 
##                                                  2 
##                                     Richard Parker 
##                                                  2 
##                                   Richard Roithner 
##                                                  2 
##                                         Rick Lober 
##                                                  2 
##                                  Rick N. Tumlinson 
##                                                  2 
##                                           Rod Pyle 
##                                                  2 
##                                   Roger D. Launius 
##                                                  2 
##                                     Roger J. Rusch 
##                                                  2 
##                                         RUAG Space 
##                                                  2 
##                                  Sen. Roger Wicker 
##                                                  2 
##                                Space Policy Online 
##                                                  2 
##                                          Space.com 
##                                                  2 
##                                    Spaceflight Now 
##                                                  2 
##                                 Spaceflightnow.com 
##                                                  2 
##                                      Sydney Mineer 
##                                                  2 
##                                           The Hill 
##                                                  2 
##                               The Huntsville Times 
##                                                  2 
##                                   The Space Review 
##                                                  2 
##                                       Thomas Ayres 
##                                                  2 
##                                     Thomas Zelibor 
##                                                  2 
##                                       Tom Ramstack 
##                                                  2 
##                             U.S. Rep. Doug Lamborn 
##                                                  2 
##                                      Vago Muradian 
##                                                  2 
##                                    Vaughn Standley 
##                                                  2 
##                                  Vivek Raghuvanshi 
##                                                  2 
##                                       Walter Scott 
##                                                  2 
##                                Maj. Jared Thompson 
##                                                  1 
##                                [Wayne Hale's Blog] 
##                                                  1 
##                                         A.J. Clark 
##                                                  1 
##                                     Aaron Oesterle 
##                                                  1 
##                                           ABC News 
##                                                  1 
##                                          Al Globus 
##                                                  1 
##                                         Alan Crisp 
##                                                  1 
##                                   Albrecht Mueller 
##                                                  1 
##                                 Alexander Urquhart 
##                                                  1 
##                            Alexander V. Vladimirov 
##                                                  1 
##                           Alexander William Salter 
##                                                  1 
##                                   Alexandre Najjar 
##                                                  1 
##                                       Alexis Conte 
##                                                  1 
##                                    Alfred Anzaldúa 
##                                                  1 
##                                    Amanda Solloway 
##                                                  1 
##                                        Andrea Gini 
##                                                  1 
##                                     Andrew Chaikin 
##                                                  1 
##                                  Andrew M. Johnson 
##                                                  1 
##                                        Andrew Rush 
##                                                  1 
##                                     Andrey Yakunin 
##                                                  1 
##                                       Angela Davis 
##                                                  1 
##                               Anthony M. Rutkowski 
##                                                  1 
##                                   Antonino Salmeri 
##                                                  1 
##                                                 AP 
##                                                  1 
##                               AP via Baltimore Sun 
##                                                  1 
##                               AP via Florida Today 
##                                                  1 
##                            AP via the Miami Hearld 
##                                                  1 
##                                       Ars Technica 
##                                                  1 
##                                   Arthur C. Clarke 
##                                                  1 
##                       Associated Press of Pakistan 
##                                                  1 
##                                        Austin Link 
##                                                  1 
##                                      Ayano Akiyama 
##                                                  1 
##                                    Barry W. Finger 
##                                                  1 
##                                                BBC 
##                                                  1 
##                                     Becky Iannotta 
##                                                  1 
##                                           Ben Lamm 
##                                                  1 
##                                          Ben Poole 
##                                                  1 
##                                    Benjamin Staats 
##                                                  1 
##                                        Berin Szoka 
##                                                  1 
##                                 Bernice Kiyo Glenn 
##                                                  1 
##                                     Beyond Gravity 
##                                                  1 
##                                           Bill Nye 
##                                                  1 
##                                   Bonnie J. Dunbar 
##                                                  1 
##                                        Brad Amburn 
##                                                  1 
##                                          Brad King 
##                                                  1 
##                                  Brandon W. Kelley 
##                                                  1 
##                                     Brent Sherwood 
##                                                  1 
##                                  Brianna Gurciullo 
##                                                  1 
##                                   Brien Flewelling 
##                                                  1 
##                                        Buzz Aldrin 
##                                                  1 
##                                      Caleb Pomeroy 
##                                                  1 
##                                      Calum Hervieu 
##                                                  1 
##                                        Carl Rosene 
##                                                  1 
##                                      Carlos A Rios 
##                                                  1 
##                                     Charity Weeden 
##                                                  1 
##                                     Charles Bolden 
##                                                  1 
##                                  Charles E. Miller 
##                                                  1 
##                                     Charles Miller 
##                                                  1 
##                                        China Siwei 
##                                                  1 
##                                      Chris Bassler 
##                                                  1 
##                                    Chris Blackerby 
##                                                  1 
##                                     Chris Williams 
##                                                  1 
##                                     Christina Koch 
##                                                  1 
##                                  Christine Pearson 
##                                                  1 
##                            Christopher A. Williams 
##                                                  1 
##                                  Christopher Stone 
##                                                  1 
##                                    Claude Rousseau 
##                                                  1 
##                                      Clinton Parks 
##                                                  1 
##                                               CNet 
##                                                  1 
##                                                CNN 
##                                                  1 
##                  Commercial Spaceflight Federation 
##                                                  1 
##                         Conrad C. Lautenbacher Jr. 
##                                                  1 
##                            Courthouse News Service 
##                                                  1 
##                                       Craig Miller 
##                                                  1 
##                                        Daily Press 
##                                                  1 
##                                      Daily Yomiuri 
##                                                  1 
##                                          Dan Gouré 
##                                                  1 
##                                          Dan Lewis 
##                                                  1 
##                                     Dana A. Goward 
##                                                  1 
##                                   Daniel K. Elwell 
##                                                  1 
##                                    Daniel R. Adamo 
##                                                  1 
##                                       Danny Bednar 
##                                                  1 
##                                        Dava Newman 
##                                                  1 
##                                      Dave Majumdar 
##                                                  1 
##                                     Dave Schweikle 
##                                                  1 
##                                        David Kenny 
##                                                  1 
##                               David L. Christensen 
##                                                  1 
##                                 David Miguel Hobbs 
##                                                  1 
##                                   Denise Chow (50) 
##                                                  1 
##                                     Derek Tournear 
##                                                  1 
##                                    Dick Richardson 
##                                                  1 
##                                       DigitalGlobe 
##                                                  1 
##                         Dish Network press release 
##                                                  1 
##                                    Dmitry Solovyov 
##                                                  1 
##                                      Don A. Nelson 
##                                                  1 
##                                         Don Basile 
##                                                  1 
##                                         Don Graves 
##                                                  1 
##                                 Doris Elin Salazar 
##                                                  1 
##                  Doug Mohney, Special to SpaceNews 
##                                                  1 
##                                     Drew Hendricks 
##                                                  1 
##                                         Dwayne Day 
##                                                  1 
##                              Eddie Bernice Johnson 
##                                                  1 
##                                      Edward Morris 
##                                                  1 
##                                       Einar Engvig 
##                                                  1 
##                                     Elaine L. Chao 
##                                                  1 
##                                     Elizabeth Howe 
##                                                  1 
##                                   Elizabeth Howell 
##                                                  1 
##                                       Elliot Carol 
##                                                  1 
##                                     Elliot Pullham 
##                                                  1 
##                                Elżbieta Bieńkowska 
##                                                  1 
##                                   Emily Lakdawalla 
##                                                  1 
##                                        Eric Berger 
##                                                  1 
##                                       Eric Fanning 
##                                                  1 
##                                        Euroconsult 
##                                                  1 
##                                       Forbes India 
##                                                  1 
##                                     Foreign Policy 
##                                                  1 
##                                           Fox News 
##                                                  1 
##                                      G. Ryan Faith 
##                                                  1 
##                                       Gabor Szecsi 
##                                                  1 
##                                     Gabriel Mounce 
##                                                  1 
##                                Gen. David Goldfein 
##                                                  1 
##                                         Geoff Nunn 
##                                                  1 
##                                       George Abbey 
##                                                  1 
##                                      George Sowers 
##                                                  1 
##                                     Gilbert D. Rye 
##                                                  1 
##                                      Giulio Prisco 
##                                                  1 
##                          Giulio Ranzo, CEO of Avio 
##                                                  1 
##                                  Giuseppe Reibaldi 
##                                                  1 
##                                    Global Montreal 
##                                                  1 
##                                       Gordon Smith 
##                                                  1 
##                                     Gregory Blaney 
##                                                  1 
##                                      Gregory Falco 
##                                                  1 
##                                     Guilhem Penent 
##                                                  1 
##                       H.E. Ahmad Belhoul Al Falasi 
##                                                  1 
##                                      Hannah Kerner 
##                                                  1 
##                                  Hanneke Weitering 
##                                                  1 
##                                    Harriet Brettle 
##                                                  1 
##                                     Harry Augensen 
##                                                  1 
##                                      Haym Benaroya 
##                                                  1 
##                                     Helen Domenici 
##                                                  1 
##                                   Huntsville Times 
##                                                  1 
##                                                IAI 
##                                                  1 
##                                         Ian Annett 
##                                                  1 
##                                          Ian Cohen 
##                                                  1 
##                                               IANS 
##                                                  1 
##                                     Inga Popovaite 
##                                                  1 
##           Institute for Defence Studies & Analyses 
##                                                  1 
##                                  J. Brant Arseneau 
##                                                  1 
##                                  J. David Grossman 
##                                                  1 
##                                         Jack Burns 
##                                                  1 
##                                      Jack O’Connor 
##                                                  1 
##                                       James French 
##                                                  1 
##                                      James J. Shaw 
##                                                  1 
##                                     James M. Olson 
##                                                  1 
##                                James Michael Knauf 
##                                                  1 
##                                        Jamie Morin 
##                                                  1 
##                                        Jan Woerner 
##                                                  1 
##                              Jared Zambrano-Stout  
##                                                  1 
##                                         Jason Dunn 
##                                                  1 
##                                      Jason Spencer 
##                                                  1 
##                                        Jatan Mehta 
##                                                  1 
##                    Jeff Foust for The Space Review 
##                                                  1 
##                         Jeff Foust, Space Politics 
##                                                  1 
##                      Jeff Foust, Spacepolitics.com 
##                                                  1 
##                                   Jennifer McArdle 
##                                                  1 
##                                      Jeremy Singer 
##                                                  1 
##                                         Jerry Ross 
##                                                  1 
##                                           Jim Bell 
##                                                  1 
##                                      Jim Hillhouse 
##                                                  1 
##                                           Jim Howe 
##                                                  1 
##                                John “J.R.” Riordan 
##                                                  1 
##                                        John Casani 
##                                                  1 
##                                          John Cook 
##                                                  1 
##                                     John D. Rummel 
##                                                  1 
##                                         John Galer 
##                                                  1 
##                                         John Klein 
##                                                  1 
##                                     John M. Horack 
##                                                  1 
##                                    John M. Logsdon 
##                                                  1 
##                                    John P. Stopher 
##                                                  1 
##                                         John Rakow 
##                                                  1 
##                                          John Reed 
##                                                  1 
##                                       John Shannon 
##                                                  1 
##                               Jonathan Coopersmith 
##                                                  1 
##                                      Jonathan Goff 
##                                                  1 
##                                    Jonathan Murphy 
##                                                  1 
##                               Jörg Feustel-Büechl  
##                                                  1 
##                                   Joseph N. Pelton 
##                                                  1 
##                                          JR Minkel 
##                                                  1 
##                                        Juan Fraire 
##                                                  1 
##                                       Jung Sung-Ki 
##                                                  1 
##                                      Justin Cadman 
##                                                  1 
##                                    Kaitlyn Johnson 
##                                                  1 
##                               Karim Michel Sabbagh 
##                                                  1 
##                                         Karl Baker 
##                                                  1 
##                                   Keith J. Masback 
##                                                  1 
##                                    Kelly A. Grieco 
##                                                  1 
##                                    Kelly Dickerson 
##                                                  1 
##                                    Kent D. Johnson 
##                                                  1 
##                                Kevin Cheberenchick 
##                                                  1 
##                                      Kevin Chilton 
##                                                  1 
##                                 Kevin M. O'Connell 
##                                                  1 
##                                         Kim Crider 
##                                                  1 
##                                Kiran Krishnan Nair 
##                                                  1 
##                                Laura Delgado Lopez 
##                                                  1 
##                                        Laura Grego 
##                                                  1 
##                                       Laura Overly 
##                                                  1 
##                             Laura Yvonne Zielinski 
##                                                  1 
##                                      Leland Melvin 
##                                                  1 
##                                        Leo Mondale 
##                                                  1 
##                                      Lisa Williams 
##                                                  1 
##                                     Lloyd Droppers 
##                                                  1 
##                                        Lori Garver 
##                                                  1 
##                             Los Angeles Daily News 
##                                                  1 
##                             Lt. Col. Brad Townsend 
##                                                  1 
##                                   Madhu Thangavelu 
##                                                  1 
##                                Mainichi Daily News 
##                                                  1 
##                                Maj. Gen. John Shaw 
##                                                  1 
##                               Maj. Ryan Stephenson 
##                                                  1 
##                                      Marc G. Carns 
##                                                  1 
##                                       Marco Borghi 
##                                                  1 
##                                      Marcy Steinke 
##                                                  1 
##                                    Mariel Borowitz 
##                                                  1 
##                                    Mario Maniewicz 
##                                                  1 
##                                   Marion C. Blakey 
##                                                  1 
##                                      Mark Albrecht 
##                                                  1 
##                                       Mark Daniels 
##                                                  1 
##                                      Mark Dankberg 
##                                                  1 
##                                         Mark Knapp 
##                                                  1 
##                                     Martin Coleman 
##                                                  1 
##                                    Martin Heinrich 
##                                                  1 
##                                        Martin Ross 
##                                                  1 
##                                 Massimo Passamonti 
##                                                  1 
##                                      Matt Erickson 
##                                                  1 
##                                   Matthew Schaefer 
##                                                  1 
##                                     Max Provencher 
##                                                  1 
##                                     MeetTheBoss TV 
##                                                  1 
##                                    Micah Roschelle 
##                                                  1 
##                                     Michael Bonard 
##                                                  1 
##                                    Michael Gleason 
##                                                  1 
##                                Michael H. Freilich 
##                                                  1 
##                                      Michael Hawes 
##                                                  1 
##                                    Michael Hoffman 
##                                                  1 
##                                  Michael J. Frimet 
##                                                  1 
##                                   Michael Lencioni 
##                                                  1 
##                                         Michael Mo 
##                                                  1 
##                                     Michelle Evans 
##                                                  1 
##                                         Mike Carey 
##                                                  1 
##                                          Mike Gold 
##                                                  1 
##                                       Mike Griffin 
##                                                  1 
##                                          Mike Hall 
##                                                  1 
##                                       Mike Lindsay 
##                                                  1 
##                                        Mike Lorrey 
##                                                  1 
##                                         Mike Pence 
##                                                  1 
##                                   Mikhail Grinberg 
##                                                  1 
##                                       Miles Lifson 
##                                                  1 
##                               Mounia El Bouzegaoui 
##                                                  1 
##                                          MSNBC.com 
##                                                  1 
##                                       Myland Pride 
##                                                  1 
##                           Name withheld by request 
##                                                  1 
##                                        NASA report 
##                                                  1 
##                                     Natalia Larrea 
##                                                  1 
##                                   Nathan Schwadron 
##                                                  1 
##                                             Nature 
##                                                  1 
##                                        Negar Feher 
##                                                  1 
##                                    Nelson Bridwell 
##                                                  1 
##                                  Nicholas E. White 
##                                                  1 
##                                    Nicholas Nelson 
##                                                  1 
##                                          Nick Adde 
##                                                  1 
##                               Nicole Blake Johnson 
##                                                  1 
##                                     NMpolitics.net 
##                                                  1 
##                                         Pam Melroy 
##                                                  1 
##                                        Paola Leoni 
##                                                  1 
##                                      Paolo Venneri 
##                                                  1 
##                                  Paris Peace Forum 
##                                                  1 
##                                           Pat Bahn 
##                                                  1 
##                                     Patricia Hynes 
##                                                  1 
##                                Patrick T. Ingraham 
##                                                  1 
##                                        Patty Stoll 
##                                                  1 
##                                        Paul Brower 
##                                                  1 
##                                     Paul Dusenbery 
##                                                  1 
##                                      Paul Dykewicz 
##                                                  1 
##                                       Paul McLeary 
##                                                  1 
##                                         Paul Meyer 
##                                                  1 
##                                          PEHub.com 
##                                                  1 
##                                         Pete Hoene 
##                                                  1 
##                                     Peter Kamocsai 
##                                                  1 
##                                     Philip Bracken 
##                                                  1 
##                                   Philip Handleman 
##                                                  1 
##                                 Phillip L. Spector 
##                                                  1 
##                                        Pierre Tran 
##                                                  1 
##                                           Politico 
##                                                  1 
##                                        Rabi Boundi 
##                                                  1 
##                    Radio Free Europe/Radio Liberty 
##                                                  1 
##                                       Rand Simberg 
##                                                  1 
##                                 Rebeccah Heinrichs 
##                                                  1 
##                                         Rei Goffer 
##                                                  1 
## Rep. Mike Rogers (R-AL) and Rep. Jim Cooper (D-TN) 
##                                                  1 
##                                 Rep. Steve Palazzo 
##                                                  1 
##                                        RIA Novotsi 
##                                                  1 
##                 Richard DalBello, Intelsat General 
##                                                  1 
##                                     Richard Godwin 
##                                                  1 
##                                  Richard P. Binzel 
##                                                  1 
##                                   Richard Upchurch 
##                                                  1 
##                                       Rick Barnard 
##                                                  1 
##                                     Rick Barrowman 
##                                                  1 
##                                    Robbin F. Laird 
##                                                  1 
##                                        Robert Bunn 
##                                                  1 
##                                    Robert D. Braun 
##                                                  1 
##                                     Robert G. Oler 
##                                                  1 
##                                   Robert J. Kohler 
##                                                  1 
##                                    Roger Blandford 
##                                                  1 
##                                  Roger G. Harrison 
##                                                  1 
##                                      Roger Launius 
##                                                  1 
##                                        Roger Rusch 
##                                                  1 
##                                          Roll Call 
##                                                  1 
##                                      Rupert Pearce 
##                                                  1 
##                                      Ruth Stilwell 
##                                                  1 
##                                       Ryan Walters 
##                                                  1 
##                                      Sami Boustany 
##                                                  1 
##                                        Samir Jaber 
##                                                  1 
##                                   Samuel N. Goward 
##                                                  1 
##                                      Sarah Beattie 
##                                                  1 
##                                        Sarah Lewin 
##                                                  1 
##                                    Science Insider 
##                                                  1 
##                                      Scott Hubbard 
##                                                  1 
##                                     Scott Kordella 
##                                                  1 
##                                         Scott Lehr 
##                                                  1 
##                         Seattle Post-Intelligencer 
##                                                  1 
##                                      Seattle Times 
##                                                  1 
##                           Sen. Hatch Press Release 
##                                                  1 
##                                Sen. Richard Shelby 
##                                                  1 
##                                Sid-Ahmed Boukabara 
##                                                  1 
##                                      Simon Halpern 
##                                                  1 
##                                     Simon Seminari 
##                                                  1 
##                                  Sinéad O’Sullivan 
##                                                  1 
##                                        Skot Butler 
##                                                  1 
##   Society of Satellite Professionals International 
##                                                  1 
##      Space & Satellite Professionals International 
##                                                  1 
##                                     SpaceNews Inc. 
##                                                  1 
##                              SpacePolicyOnline.com 
##                                                  1 
##                                    SpaceRef Canada 
##                                                  1 
##                                         SpaceX.com 
##                                                  1 
##                                     Spencer Kaplan 
##                                                  1 
##                                         Stan Shull 
##                                                  1 
##                                     Stephen Jordan 
##                                                  1 
##                                     Stephen Kostes 
##                                                  1 
##                                        Steve Blank 
##                                                  1 
##                                    Steve Bochinger 
##                                                  1 
##                                        Steve Losey 
##                                                  1 
##                                  Steven Collicott  
##                                                  1 
##                                 Steven L. Mosteiro 
##                                                  1 
##                                      Steven Scheer 
##                                                  1 
##                                 Stuart Daughtridge 
##                                                  1 
##                                         Stuart Fox 
##                                                  1 
##                                        Susan Irwin 
##                                                  1 
##                                    Taber MacCallum 
##                                                  1 
##                                 Tanja Masson-Zwaan 
##                                                  1 
##                                        Tanya Lewis 
##                                                  1 
##                      Tariq Malik & Clara Moskowitz 
##                                                  1 
##                                     Tesat-Spacecom 
##                                                  1 
##                               The Associated Press 
##                                                  1 
##                                The Daily Telegraph 
##                                                  1 
##                             The Hollywood Reporter 
##                                                  1 
##                                    The Japan Times 
##                                                  1 
##                            The Mainichi Daily News 
##                                                  1 
##                  The Secure World Foundation staff 
##                                                  1 
##                                   Thomas d’Halluin 
##                                                  1 
##                                  Thomas G. Roberts 
##                                                  1 
##                                  Thomas J. Donohue 
##                                                  1 
##                                      Thomas Karako 
##                                                  1 
##                                      Thomas Powell 
##                                                  1 
##                                         Tim Farrar 
##                                                  1 
##                                          Tim Kyger 
##                                                  1 
##                                  Timothy G. Nelson 
##                                                  1 
##                                     Timothy Maclay 
##                                                  1 
##                                    Todd Thibodeaux 
##                                                  1 
##                                       Todd Windsor 
##                                                  1 
##                                           Tom Choi 
##                                                  1 
##                                        Tom Kington 
##                                                  1 
##                                        Tom Marotta 
##                                                  1 
##                                        Tom Zelibor 
##                                                  1 
##                                     Tommaso Sgobba 
##                                                  1 
##                                          Tony Samp 
##                                                  1 
##                                       Tyler Bender 
##                                                  1 
##                U.S. Army Lt. Gen Daniel L. Karbler 
##                                                  1 
##                        U.S. Rep. Jim Sensenbrenner 
##                                                  1 
##                           U.S. Rep. Kevin McCarthy 
##                                                  1 
##                             U.S. Sen. Cory Gardner 
##                                                  1 
##                              U.S. Sen. Jerry Moran 
##                                                  1 
##                                      Umit Enginsoy 
##                                                  1 
##                      Union of Concerned Scientists 
##                                                  1 
##                                       Unmeel Mehta 
##                                                  1 
##                                          USA Today 
##                                                  1 
##                                          Uzi Rubin 
##                                                  1 
##                                  Valery Komissarov 
##                                                  1 
##                                        Vance Brand 
##                                                  1 
##                                        VentureBeat 
##                                                  1 
##                                     Victor Tambone 
##                                                  1 
##                                  Vidya Sagar Reddy 
##                                                  1 
##                                         Vinny Sica 
##                                                  1 
##                                 Volodymyr Kravchuk 
##                                                  1 
##                                     Volodymyr Usov 
##                                                  1 
##                                Wall Street Journal 
##                                                  1 
##                                     Walter Peeters 
##                                                  1 
##                                       Warren White 
##                                                  1 
##                                               WFTV 
##                                                  1 
##                                        Wilbur Ross 
##                                                  1 
##                                     William Bianco 
##                                                  1 
##                                    William Harwood 
##                                                  1 
##                                   William Matthews 
##                                                  1 
##                                   William S. Smith 
##                                                  1 
##                                Winnipeg Free Press 
##                                                  1 
##                                               WSBW 
##                                                  1 
##                                          Xinhuanet 
##                                                  1 
##                                             Yonhap 
##                                                  1 
##                                       Zahid Zaheer 
##                                                  1

Como hemos visto hay 648 autores que es una gran catidad y más teniendo en cuenta que es una revista de caracter científico y normalmente suelen tener a unos redactores habitules. Es por ello que podemos ordenar los autores por su frecuencia y mostrar los 20 primeros ya que nos podemos hacer a la idea de quienes son sus redactores habituales, además de que hay muchos autores han participado que a penas cuentan con 10 artículos publicados.

# Ordenar las frecuencias de mayor a menor en el dataset con extracto
frecuencia_autores_ordenada <- sort(frecuencia_autores, decreasing = TRUE)

# Seleccionar los 20 autores más frecuentes
top_20_autores <- head(frecuencia_autores_ordenada, 20)

# Convertir los resultados en un data frame
tabla_top_20_autores <- data.frame(Autor = names(top_20_autores),
                                                Frecuencia = as.numeric(top_20_autores))

# Imprimir la tabla
print(tabla_top_20_autores)
##                  Autor Frecuencia
## 1           Jeff Foust       4865
## 2  Peter B. de Selding       2539
## 3         Sandra Erwin       2438
## 4         Debra Werner       1489
## 5          Caleb Henry       1172
## 6      SpaceNews Staff        878
## 7            Dan Leone        795
## 8           Mike Gruss        789
## 9        Jason Rainbow        729
## 10        Andrew Jones        476
## 11    SpaceNews Editor        372
## 12        Brian Berger        248
## 13      Warren Ferster        244
## 14      Turner Brinton        196
## 15         Amy Klamper        172
## 16         Park Si-soo        125
## 17      Phillip Swarts        116
## 18         Irene Klotz        112
## 19       Leonard David         78
## 20           SpaceNews         70

Sacamos un gráfico con los 20 autores más frecuentes para facilitar la visualización.

# Crear el gráfico de barras
grafico_autores <- ggplot(data = tabla_top_20_autores, aes(x = reorder(Autor, Frecuencia), y = Frecuencia, fill = Frecuencia)) +
                   geom_bar(stat = "identity") +
                   scale_fill_gradient(low = "#87CEEB", high = "#4682B4", na.value = "grey90", guide = "legend") +
                   labs(title = "Top 20 Autores más Frecuentes",
                        x = "Autor",
                        y = "Frecuencia") +
                   theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
                   coord_flip()  # Rotar etiquetas del eje x para que sean legibles

# Mostrar el gráfico 
print(grafico_autores)

Algunas conclusiones que podemos extraer de los autores más frecuentes son:

  1. Contribución destacada: Los autores más frecuentes, como Jeff Foust, Peter B. de Selding y Sandra Erwin, han realizado una contribución significativa al campo de la información espacial y la astronomía mediante la publicación de un gran número de artículos.

  2. Diversidad de autores: Aunque algunos autores son más prominentes que otros, la diversidad de autores en la lista indica una variedad de perspectivas y áreas de especialización en la cobertura de noticias espaciales.

  3. Equipo editorial: La presencia de SpaceNews Staff, SpaceNews Editor y SpaceNews sugiere que parte de la cobertura editorial es realizada por el equipo editorial de SpaceNews, lo que puede indicar un enfoque institucional o colaborativo en la generación de contenido.

  4. Relevancia y reconocimiento: Autores como Jeff Foust, Peter B. de Selding y Sandra Erwin pueden ser considerados como figuras prominentes en el ámbito de la información espacial, dada su alta frecuencia de publicación y, posiblemente, su experiencia y reconocimiento en el campo.

  5. Distribución de responsabilidades: Es posible que algunos autores se centren en áreas específicas de la cobertura espacial, como lanzamientos de cohetes, exploración espacial, política espacial, entre otros, lo que sugiere una distribución de responsabilidades dentro del equipo editorial o de colaboradores.

Tiempo

Lo primero que vamos a hacer es ver la fercuencia de publicaciones por año.

# Extraer el año de la fecha
datos_space_limpios$year <- year(datos_space_limpios$date)

# Calcular la frecuencia de artículos por año
frecuencia_por_año <- table(datos_space_limpios$year)

# Crear el dataframe para el gráfico
df_frecuencia_por_año <- data.frame(Year = as.numeric(names(frecuencia_por_año)),
                                     Frequency = as.numeric(frecuencia_por_año))

# Crear el gráfico de barras
grafico_frecuencia_por_año <- ggplot(data = df_frecuencia_por_año, aes(x = as.factor(Year), y = Frequency, fill = Frequency)) +
  geom_bar(stat = "identity") +
  scale_fill_gradient(low = "#87CEEB", high = "#4682B4", na.value = "grey90", guide = "legend") +  # Definir el degradado de colores
  labs(title = "Frecuencia de artículos por año",
       x = "Año",
       y = "Número de artículos") +
  theme_minimal()

# Mostrar el gráfico con degradado de colores
print(grafico_frecuencia_por_año)

Realizamos un pequeño resumen con los datos recien obtenidos.

# Mostrar la tabla de resumen
tabla_resumen <- df_frecuencia_por_año %>%
  summarise(Total_articulos = sum(Frequency),
            Año_máximo = Year[which.max(Frequency)],
            Máximo_articulos = max(Frequency),
            Año_mínimo = Year[which.min(Frequency)],
            Mínimo_articulos = min(Frequency))

print(tabla_resumen)
##   Total_articulos Año_máximo Máximo_articulos Año_mínimo Mínimo_articulos
## 1           19584       2021             1845       2005                3

En la tabla resumen nos damos cuenta que el año con más artículos publicados fue en 2021 con 19584 artículos, mientras que 2005 fue el año con menos publicaciones con tan sólo 3 artículos.

La razón por la escasa cantidad de artículos de 2005 se puede deber a que esto son noticias recogidas de Internet, por lo que en aquella época la editorial SpaceNews comenzó a publicar estas noticias en Internet.

Podemos ver las noticias que hubó en 2005.

# Filtrar las noticias del año 2005
noticias_2005 <- datos_space_limpios %>% filter(year == 2005)

# Mostrar las noticias del año 2005
print(noticias_2005)
##                                                      title
## 1 Griffin Reiterates NASA’s Commitment to Commercial Cargo
## 2    Group Urges NASA To Plan for Possible Asteroid Strike
## 3           ESA and Member States in Standoff Over Galileo
##                                                                        url
## 1 https://spacenews.com/griffin-reiterates-commitment-commercial-services/
## 2    https://spacenews.com/group-urges-nasa-plan-possible-asteroid-strike/
## 3       https://spacenews.com/esa-and-member-states-standoff-over-galileo/
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           content
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           league city, texas — commercial space station cargo ships, crew ferries and other spacecraft will prove a vital cog in nasa’s engine for future space exploration, the agency’s top official said nov. 15. “we want to be able to buy these services from american industry,” nasa administrator mike griffin told the american astronautical society during its annual conference here, adding that the first space station resupply proposals from commercial providers are expected this autumn . “it will not be government business as usual,” he said. commercial cargo- and crew-transportation services to the international space station are just the tip of what griffin dubbed “the dawn of the true space age,” an era which could include private fueling depots in low-earth orbit to aid nasa’s plan to return astronauts to the moon. \n“it is exactly the type of enterprise which should be left to industry and the commercial marketplace,” griffin said. relying on commercial space services to augment its own infrastructure may be a boon for nasa, said courtney stadd, a former nasa chief of staff. “nasa cannot succeed alone in pursuing the exploration vision,” stadd said , adding that the agency has its hands full sustaining the space station while working to develop new cargo and human-rated spacecraft and rockets for moon and mars missions. “it’s a breathtakingly full dance card.” the agency should embrace partnerships with industry and the international community because “any misstep in human spaceflight could spell a very long hiatus in human-driven exploration in the u.s.,” stadd said. nasa already has eaten into its international space station research budget to fund the facility’s completion as well as development of the crew exploration vehicle (cev) — the planned successor to the space shuttle. “we can afford to build the station and finish its assembly, or we can afford to use what’s there for research,” griffin said. “but we cannot afford to simultaneously do both.” nasa’s three remaining space shuttles are slated for retirement by 2010. between now and then, agency officials hope to launch 19 flights — 18 for space station construction or resupply. the additional shuttle mission is earmarked to service the hubble space telescope. “the station is a great proving ground for exploration,” said bill gerstenmaier, nasa’s associate administrator of space operations, adding that by the time the orbiting laboratory is complete it will have a mass of about 363,000 kilograms — roughly the same as a potential mars transit vehicle under the space agency’s exploration vision. “we’ve learned a lot about operating internationally and a lot about continuous operation, all of which applies directly to exploration.” the space station currently is about the size of a three-bedroom home and only half-built as nasa works to resume space shuttle flights. nasa space shuttles are the only vehicles capable of launching the hefty station components such as the european columbus module. russian spacecraft have kept the orbital platform manned and supplied with the shuttle fleet grounded. the flight this summer of space shuttle discovery on nasa’s first mission since the february 2003 columbia accident revealed that the agency still had not resolved the problem of dangerous chunks of insulating foam breaking away from the orbiter’s external tank during liftoff. as a result, the fleet was once again grounded. nasa’s second post-columbia flight — space shuttle atlantis’ sts-121 mission — currently is expected to occur no earlier than may 2006. but it will be the flight after that, sts-115, which will once again resume international space station construction. initial shuttle flights to the space station will deliver truss and solar-array segments necessary to power large components such as columbus and japan’s kibo experiment module.
## 2 a group that monitors near earth asteroids is urging nasa to develop a strategy for dealing with a recently discovered asteroid that could strike earth in 2036. the u.s. space agency is being prodded by a group of astronauts, scientists and other technical specialists who are uneasy about the current lack of action to protect the earth from potential impacts with near earth objects (neos). the object was found last year through the efforts of nasa’s spaceguard survey. in 1998 nasa formally initiated the spaceguard survey by adopting the objective of finding 90 percent of the near earth asteroids larger than one kilometer in diameter before the end of 2008. asteroid 99942 apophis — first labeled as 2004 mn4 — is estimated to be roughly 320 meters in diameter. were it to strike earth, it would not set off global havoc but would generate significant local or regional damage, experts say. asteroid watchers are worried about the exceptionally close flyby of earth that apophis is expected to make april 13, 2029. the encounter will be so close in fact, the space rock will be naked-eye visible as it darts by. experts canno t rule out at this time the possibility that apophis may pass through what is known as a gravitational keyhole — a spot that alters the asteroid’s trajectory as it zips by our planet. that change might put it on a trajectory to strike the into earth seven years later. a group known as the b612 foundation, chaired by russell schweickart, a former apollo astronaut, asked nasa to conduct an analysis that included the possibility of placing an active radio transponder on the object. doing so at a fairly early date would yield the requisite orbital accuracy of the asteroid as it sped through space. in a june 6 letter to nasa administrator michael griffin, schweickart, on behalf of the b612 foundation, called for support in “resolving an issue of critical importance” — namely whether a scientific mission should be launched to asteroid apophis in the near term. such a probe if dispatched, schweickart stated, would provide knowledge of the asteroid’s orbit in time to initiate a deflection mission in the unlikely event one should be required. a spacecraft mission to apophis would augment tracking of the object from the ground and carry out a number of scientific duties, schweickart said in the letter to griffin. nasa provided a formal response in an oct. 12 letter from mary cleave, nasa associate administrator for science, which included a detailed analysis by steven chesley of nasa’s near earth object program office at the jet propulsion laboratory (jpl) in pasadena, calif. “the key conclusion to be taken from this analysis,” cleave said , “is that aggressive (i.e., more expensive) action can reasonably be delayed until after the 2013 observing opportunity. for apophis, the 16 years available after 2013 are sufficient to recognize and respond to any hazard that still exists after that time.” cleave noted in the letter that while apophis “is an object whose motion we will continue to monitor closely in the coming years, we conclude a space mission to this object based solely on any perceived collision hazard is not warranted at this time.” cleave, however, did not rule out the possibility that someone might bid for a discovery-class, low-cost mission that could be sent to apophis, “based on purely scientific arguments,” she said. “indeed, the asteroid’s orbit is particularly attractive for spacecraft rendezvous, and the extraordinary close encounter in april 2029 provides a unique opportunity to investigate a number of scientific neo issues,” cleave said in the letter. asteroid apophis and the discussions it has sparked are welcome , observed david morrison, a space scientist and asteroid specialist at nasa’s ames research center, situated in silicon valley, calif .”i am pleased that this dialog is taking place,” morrison said. “this is the first time that serious possibilities for dealing with a real but low-probability future impact have been discussed in a technically professional way, rather than receiving the ‘hollywood treatment.'” morrison said that he considers it remarkable that the spaceguard survey has reached the level of maturity where such an asteroid could not only be found, but its orbit understood well enough to deal with “keyholes” and other subtleties. “apophis represents for me a symbol of the coming of age of spaceguard and of asteroid impact studies in general,” he said. the possibility of apophis hitting earth on april 13, 2036, is real, morrison said, even if the probabilities now seem to be very small. “these probabilities represent uncertainties in our knowledge of the orbit, not a failure of the science.” but whether the asteroid will strike earth or not, morrison concluded, the challenge is to resolve which case is correct. “with more observations over a longer time span, we will be able to tie this down.”
## 3                                                                                                                                                                                                                      paris — the european space agency (esa) has begun a war of nerves with several of its member governments following their continued refusal to approve financing for europe’s galileo satellite-navigation project, european government and industry officials said. the most recent attempt to find esa’s share of a funding shortage estimated at around 400 million euros ($480 million) came july 26, when the agency once again asked its member states to sign up for their share of the funding. in a repeat of a similar meeting in late june, several governments declined. officials said the decision will have several consequences. first, it will slow negotiations between a european government agency and an industry consortium over the award of the galileo concession. the consortium run the galileo program and purchase most of the 30-satellite galileo constellation with private and government funds. but the consortium members have said they cannot commit themselves until they are certain that the investment agreed to previously by european governments is made. esa and the european commission have agreed to share the costs of galileo’s ground network and an initial group of four satellites as part of a program called in-orbit validation. it is this $1.2-billion contract whose funding has been blocked at esa since late 2004. “this makes things difficult for us, and certainly has an effect on our work, even if we are not directly involved in the negotiations,” hans peter marchlewski, general counselor for the galileo joint undertaking of brussels, belgium, said july 29. his organization is negotiating the concession contract with the industrial consortium. galileo industries s.a. of brussels, which includes several of europe’s biggest space-hardware manufacturers, is responsible for doing the work under the in-orbit validation contract. it is this contract whose funds have not been released. esa awarded an initial, 150-million-euro tranche of the contract to galileo industries in december, on the assumption that the remaining funds would be committed by july. guenter stamerjohanns, director of galileo industries, said july 29 that “several hundred people” would start going without paychecks in october if the funding is not released by then. “we need a decision in september or we run into danger,” stamerjohanns said. “we have been able to be flexible in our spending so that there has been no work slowdown so far. but everyone knows that industry can only work on available funding.” esa director-general jean-jacques dordain said the agency is in a standoff with some of its member states, with neither side moving. “the member states tell me that i cannot go ahead with this program until they approve the funding, and that is true,” dordain said july 28. “but it is also true that without this approval, i cannot pay industrial contracts” to companies with employees in these same nations. the german government, represented at esa by the german aerospace center, dlr, has been one of several governments insisting that future galileo control centers and other infrastructure be located on its territory. but these decisions are not made by esa, but by the european commission and, later on, the galileo concession winner. “we are being asked to resolve a problem that is not ours,” dordain said. “we are trying to help out. but now the delays are reaching a point where the program could suffer.” dordain said esa government representatives will meet again in late august to attempt to find the needed funding. he said esa’s contract-approval board, called the industrial policy committee, meets sept. 28 and that this date is crucial. “we will have problems if there is no approval by sept. 28,” dordain said. “it will be terra incognita for galileo. what is certain is that i can be just as stubborn as anyone else, and industry will not get one more euro until the issue is resolved.” the impasse on this aspect of galileo has not stopped the galileo joint undertaking from concluding system-cooperation contracts with china. three contracts with chinese organizations were signed on july 28 in beijing. the contracts’ total value is estimated at less than 20 million euros. while it was the brussels-based galileo joint undertaking that signed the deals, it will be chinese money that will be spent. china has agreed to spend 200 million euros on galileo. five million was paid in cash to the galileo joint undertaking to give china an equity stake in the program. another 65 million euros will be spent on work in china on galileo development work. the remaining 130 million euros will be china’s investment in galileo’s deployment phase, to be managed by the industrial concession.
##                author       date
## 1         Tariq Malik 2005-11-21
## 2       Leonard David 2005-11-07
## 3 Peter B. de Selding 2005-08-01
##                                                                                                                                                                                                                                                    postexcerpt
## 1                                                                       Commercial space station cargo ships, crew ferries and other spacecraft will prove a vital cog in NASA's engine for future space exploration, the agency's top official said Nov. 15 .
## 2                                                                                             A group that monitors Near Earth Asteroids is urging NASA to develop a strategy for dealing with a recently discovered asteroid that could strike Earth in 2036.
## 3  The European Space Agency (ESA) has begun a war of nerves with several of its member governments following their continued refusal to approve financing for Europe's Galileo satellite-navigation project, European government and industry officials said.
##   year
## 1 2005
## 2 2005
## 3 2005

En cuanto a la gran cantidad de noticias publicadas durante 2021, se pudo deber a numerosos e importantes sucesesos acontecidos durante dicho año. Así que vamos a profunidizar más en ese año.

# Filtrar los artículos de 2021
articulos_2021 <- subset(datos_space_limpios, year(date) == 2021)

# Extraer el mes de la fecha
articulos_2021$month <- month(articulos_2021$date, label = TRUE)

# Calcular la frecuencia de artículos por mes
frecuencia_por_mes <- table(articulos_2021$month)

# Crear el dataframe para la tabla
df_frecuencia_por_mes <- data.frame(Mes = names(frecuencia_por_mes),
                                     Frequency = as.numeric(frecuencia_por_mes))

# Mostrar la tabla de frecuencia por mes
print(df_frecuencia_por_mes)
##    Mes Frequency
## 1  ene       117
## 2  feb       149
## 3  mar       153
## 4  abr       168
## 5  may       147
## 6  jun       161
## 7  jul       107
## 8  ago       199
## 9  sep       167
## 10 oct       165
## 11 nov       167
## 12 dic       145
# Crear el gráfico de barras
grafico_frecuencia_por_mes <- ggplot(data = df_frecuencia_por_mes, aes(x = Mes, y = Frequency, fill = Frequency)) +
  geom_bar(stat = "identity") +
  scale_fill_gradient(low = "#87CEEB", high = "#4682B4", na.value = "grey90", guide = "legend") +  # Definir el degradado de colores
  labs(title = "Frecuencia de artículos por mes en 2021",
       x = "Mes",
       y = "Número de artículos") +
  theme_minimal()

# Mostrar el gráfico 
print(grafico_frecuencia_por_mes)

Podemos observar que la frecuencia de artículos en 2021 varía a lo largo del año, con algunos meses teniendo más publicaciones que otros. Por ejemplo:

  • Los meses de febrero, marzo, abril, junio, septiembre, octubre y noviembre tienen un número de artículos por encima del promedio anual.
  • Agosto es el mes con la mayor cantidad de artículos, con 199 publicaciones.
  • Los meses de enero, mayo, julio y diciembre tienen un número de artículos por debajo del promedio anual.

Estas variaciones podrían deberse a diferentes factores, como eventos importantes en la industria espacial, lanzamientos de misiones, descubrimientos científicos relevantes, entre otros.

Algunos acontecimientos relevantes en la industria espacial y la ciencia en general durante 2021 fueron:

  1. Lanzamientos de misiones espaciales: Durante 2021, hubo numerosos lanzamientos de misiones espaciales tanto tripuladas como no tripuladas. Por ejemplo, destacan los lanzamientos de:

    • La misión Mars 2020, que incluía el rover Perseverance de la NASA y el helicóptero Ingenuity, que aterrizó en Marte en febrero de 2021.
    • Misiones espaciales de SpaceX, como las misiones Crew Dragon a la Estación Espacial Internacional (ISS) y las misiones Starlink para desplegar la constelación de satélites de Internet de SpaceX.
    • Lanzamientos de la Agencia Espacial China (CNSA), como la misión Tianwen-1 a Marte y la misión Chang’e 5 a la Luna.
  2. Descubrimientos científicos: Durante 2021 se realizaron importantes descubrimientos científicos relacionados con el espacio, como la identificación de nuevos exoplanetas, observaciones de fenómenos astronómicos raros y avances en la comprensión del universo.

  3. Desarrollos en la exploración lunar: Se produjeron varios avances en los planes de exploración lunar, incluyendo anuncios de programas espaciales de varios países para enviar misiones tripuladas y no tripuladas a la Luna en los próximos años.

  4. Acontecimientos en la ISS: Se llevaron a cabo varias actividades importantes en la Estación Espacial Internacional, como caminatas espaciales, experimentos científicos y la llegada y partida de naves espaciales de carga y tripuladas.

  5. Eventos relacionados con SpaceX: La compañía SpaceX, liderada por Elon Musk, continuó siendo una figura destacada en la industria espacial, con eventos como el lanzamiento de Starship SN15, avances en la tecnología de cohetes reutilizables y anuncios sobre futuras misiones.

Dado que agosto es el mes con mayor número de publicaciones vamos a centrar todavía más la búsqueda, quedándonos sólo con las noticias de agosto.

# Filtrar los datos para obtener solo los artículos de agosto de 2021
datos_agosto_2021 <- subset(datos_space_limpios, month(date) == 8 & year(date) == 2021)

# Verificar los primeros registros del dataset
head(datos_agosto_2021)
##                                                                                         title
## 3513                                   NASA has no plans to exchange lunar samples with China
## 3514                                         Liquid nitrogen shortage delays Landsat 9 launch
## 3515                            Aerospace Corp. CEO sees winds of change in space procurement
## 3516 Space agencies support space traffic management but differ on how it should be developed
## 3517                                        ExoTerra to provide Blackjack satellite thrusters
## 3518                     Lamborn and Crow propose establishment of Space Force National Guard
##                                                                                                                  url
## 3513                                   https://spacenews.com/nasa-has-no-plans-to-exchange-lunar-samples-with-china/
## 3514                                         https://spacenews.com/liquid-nitrogen-shortage-delays-landsat-9-launch/
## 3515                             https://spacenews.com/aerospace-corp-ceo-sees-winds-of-change-in-space-procurement/
## 3516 https://spacenews.com/space-agencies-support-space-traffic-management-but-differ-on-how-it-should-be-developed/
## 3517                                                          https://spacenews.com/bct-taps-exoterra-for-thrusters/
## 3518                     https://spacenews.com/lamborn-and-crow-propose-establishment-of-space-force-national-guard/
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     content
## 3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             washington — nasa currently has no plans to trade any of its apollo-era lunar samples with those returned by china’s chang’e-5 mission, although then agency’s chief scientist held out hope for such an exchange in the future. speaking at the annual meeting of the lunar exploration analysis group aug. 31, jim green said that the restrictions in u.s. law on bilateral cooperation between nasa and chinese organizations ruled out, for the time being, any exchange of lunar samples between the two nations. “currently, there’s no plans to create a bilateral arrangement with china on the exchange of samples,” he said, citing the wolf amendment, the decade-old provision in annual appropriations bills restricting such cooperation. green was responding to questions from scientists attending the meeting about such a swap. chang’e-5, china’s first lunar sample return mission,  brought back last december about 1.7 kilograms of material from a region near the volcanic complex mons rümker in oceanus procellarum . the material is of interest to scientists because it is relatively young compared to samples returned by earlier apollo missions and soviet-era luna robotic sample return spacecraft. after the landing, chinese officials said they would be willing to share some samples with scientists in other countries. countries have previously exchanged samples from lunar and asteroid missions. in the 1970s, the united states and soviet union exchanged a small amount of lunar samples from their missions. green said that nasa has an agreement with the japanese space agency jaxa whereby jaxa is providing samples from the asteroid ryugu, returned by the hayabusa2 mission, in exchange materials that nasa’s osiris-rex spacecraft is bringing back from the asteroid bennu. green noted that the wolf amendment restricts, but does not outright prohibit, cooperation between nasa and chinese organizations. “over time, focused efforts can be and have been done,” to win approval by the white house and congress for cooperation, he said. “i would say we have mechanisms, and we would use those mechanisms as we move into the future.” nasa collected 382 kilograms of lunar material during the six apollo missions that landed on the moon from 1969 through 1972. the next lunar samples are likely to come from the artemis 3 landing mission, scheduled for no earlier than 2024. later in the meeting, veteran lunar scientist jim head asked nasa if the agency was contemplating any robotic lunar sample return missions, perhaps as part of its commercial lunar payload services (clps) program where nasa purchases payload delivery services on commercially operated landers. “since the beginning, we have called that an enhanced capability for clps,” responded joel kearns, deputy associate administrator for exploration in nasa’s science mission directorate. however, he said doing so would be more difficult that getting landers to survive the two-week lunar night, itself a significant technical challenge. “it’s the type of thing we continue to encourage the clps providers to approach,” he said, noting the scientific interest in bringing back lunar samples from different locations. he declined to estimate when a clps lunar sample return mission might be feasible.
## 3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     washington — a one-week delay in the launch of the next landsat satellite on an atlas 5 is the result of a ripple effect in the supply chain caused by increased demand for liquid oxygen to treat covid-19 patients. nasa announced aug. 27 that the launch of landsat 9 on an atlas 5 from vandenberg space force base in california had slipped a week, from sept. 16 to no earlier than sept. 23, because “pandemic demands for medical liquid oxygen have impacted the delivery of the needed liquid nitrogen supply.” liquid nitrogen, or ln2, is used to create gaseous nitrogen needed to support launch site activities. during an aug. 31 virtual news briefing about the upcoming launch, del jenstrom, nasa landsat 9 project manager, said the issue was not an overall lack of liquid nitrogen but instead a transportation issue. “there’s plenty of liquid nitrogen in the los angeles area. the problem is they need some trucks to bring it up to vandenberg,” he said. “because of the pandemic, from what we understand, liquid oxygen deliveries have been paying much higher premiums than liquid nitrogen deliveries, and ln2 trucks have been converted to carry liquid oxygen.” jenstrom said that the defense logistics agency (dla) informed the project aug. 23 that liquid nitrogen supplies at the base were “critically low” and could not support upcoming prelaunch test activities or the launch itself. that prompted nasa deputy administrator pam melroy to contact senior dla officials to discuss ways to restore the base’s nitrogen supply. airgas, the company that handles the nitrogen supply at vandenberg, is bringing in “a dozen or so” liquid nitrogen tankers from the gulf coast temporarily to increase deliveries. “we’re seeing a substantial increase of the number of ln2 deliveries to the base right now,” he said, “and as far as we know, based on latest reports, we’re on track to support our launch on sept. 23.” supply chain issues related directly or indirectly to liquid oxygen, which is used by hospitals as the oxygen source for ventilators, came to light recently when gwynne shotwell, president and chief operating officer of spacex,  mentioned them during a panel discussion at the 36th space symposium in colorado springs aug. 24 . “we’re actually going to be impacted this year with the lack of liquid oxygen for launch,” she said. “we certainly are going to make sure the hospitals are going to have the oxygen that they need, but for anybody who has liquid oxygen to spare, send me an email.” at that time, tory bruno, chief executive of united launch alliance, hinted at a problem getting liquid nitrogen to vandenberg to support the upcoming landsat 9 launch. “working that situation now,” bruno said. the next launch planned for vandenberg is not the atlas 5 launch of landsat 9. instead, firefly aerospace has scheduled the inaugural launch of its alpha rocket from the base on sept. 2, during a four-hour window that opens at 9 p.m. eastern. company spokesperson kim jennett told spacenews aug. 31 the launch remains on schedule and is not affected by any liquid nitrogen or other supply issues. liquid oxygen supply chain problems extend beyond the united states. dmitry rogozin, head of roscosmos,  tweeted  aug. 29 that roscosmos had for months been transferring “almost all” of the oxygen produced by its various enterprises to hospitals. that has postponed testing of rocket engines, he claimed.
## 3515 t he rapid commercialization of space and the establishment of the u.s. space force have created ideal conditions for change in the national security space business, says steve isakowitz, ceo of the aerospace corp. and former president of virgin galactic. aerospace, based in el segundo, california, is a federally funded research and development center focused on analysis and assessment of space programs for the defense department, nasa and the national reconnaissance office. in an interview with  spacenews , isakowitz says unprecedented opportunities are emerging for national security space organizations to capture commercial innovation. defense programs won’t transform overnight, he says, but change is definitely in the air.   what in particular is driving change in national security space programs? the stand-up of the space force certainly was big. creating an organization that’s now empowered to make the kinds of decisions that before had been more fractured is a significant development. the space force just stood up a space systems command [which replaced the former space and missile systems center]. i think this is going to enhance the coordination across the entire space enterprise that also includes the space rapid capabilities office and the space development agency.   aerospace corp. worked closely with smc and now with space systems command. do you think they will do business differently?   not much will change immediately because smc already had undergone a significant amount of reorganization over the past two years. an important step taken by smc was to establish the “program integration council” that includes representatives from dod and intelligence agencies that acquire space systems. the council, known as pic, is a great venue to get all the players around the table, and to talk about unity of effort in a better way than they had in the past.   everyone recognizes that technology is moving fast. the question now is what do we need to do to move faster, adopt the technologies in these emerging companies, and most importantly, outpace the threat. what does all this mean for companies that sell products and services to the military?   the way companies compete for contracts will not be the same. with satellites, for example, in the past you competed through the normal phases of competition and if you won you pretty much locked that thing up for the next 10 to 20 years or even 30 years. that program was yours to grow with. i think it’s going to be much less of that going forward. what you’re going to find is that it’s going to be easier for newer companies and technologies to plug into programs. that could be done by adding new sensors to a satellite that we could try out, or trying smaller satellites in combination with the larger ones for greater resiliency.   at aerospace, a lot more of our effort will be towards the front end, working with the government and with industry, understanding where technology is going, because you don’t want to lock in things too early. we want programs that evolve much the same way as the internet where you have protocols and standards that allow you to plug in. i think that’s what we need to do for national security programs. how can the military integrate government and commercial space systems?   space is becoming a hybrid architecture, not just in the way we often think about it, which is small satellites mixed with large satellites. it’s becoming much more of a hybrid architecture in terms of different orbits that now are going to be used. frankly we’re even talking about going out to cislunar. i think it’s becoming much more hybrid in terms of satellites being able to talk to each other through optical links and so on. it’s not just for the same mission but across different missions.   we used to build ground systems that were dedicated for a specific mission. i think now they’re going to be multipurpose. so from that standpoint, you’re going to see much more mixing and matching. and this can only happen if you get the kind of coordination and standardization that i talked about earlier. there is a lot of talk about ‘space as a service’ provided by commercial firms. should dod consider buying services instead of hardware?   i think the government recognizes the value of trying to leverage what’s happening in the commercial sector. when i joined aerospace five years ago, i thought that the industry was going to transform itself quite a bit, with commercial activity and new technologies. i was actually wrong. because it’s transformed itself much more than i would have ever predicted. and it is moving really fast and i think the government recognizes that.   we are not the only one these days that talk about billions of dollars. private industry is raising billions of dollars. these are big numbers, and the government would be short sighted not to take full advantage of that kind of capability going forward.  
## 3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         colorado springs — leaders of national space agencies agree that space traffic management (stm) should be a priority but have differing views on who should be responsible for it. during a panel discussion at the 36th space symposium aug. 25, the heads of space agencies in europe and north america emphasized the importance of space traffic management given the growing amount of space objects in orbit and the threat they pose to space activities. “space traffic management is, from our point of view, a very important topic,” said walther pelzer, head of the german space agency dlr. he argued, though, against “quick” solutions at a national level. “from a german point of view, this is not the right way,” he said. “if everyone comes up with their own ideas, is will not be sustainable.” he supported instead an approach led by the united nations. “to get united nations and the word ‘speed’ into one sentence is kind of hard, and we are aware of it,” he acknowledged. “nevertheless, we have to do space traffic management within the united nations to have this issue sorted out sustainably.” later in the panel, pelzer cited as an example the ongoing discussions about stm at the un’s committee on the peaceful uses of outer space (copuos). “i think this is the right way to discuss it, within the united nations and the most important players, to find a common solution.” but josef aschbacher, director general of the european space agency, said relying on the un alone was not enough. “we need to act urgently,” he said. “we also need to find other means, because if we wait for those processes to finalize, as walther was saying very eloquently, we cannot wait that long.” he supported alternative approaches that could be done in parallel with the long-term un-led approach but could be implemented sooner. “we need to find another mechanism, which is among the major players,” he said, “to really regulate and make sure our environment remains a safe place to operate our satellites.” “we do need a strong international regulation because there will be many new actors from new countries,” said philippe baptiste, head of the french space agency cnes. he said the fact that current private space operators are responsible “is great” but that alone was not sufficient. he didn’t explicitly endorse an approach led by the un or other multinational alternatives. “collaborating on space missions is fundamental but ensuring a strong international governance framework is equally important. it’s a priority for us,” said lisa campbell, president of the canadian space agency. she supported development of guidelines for long-term sustainability of space at the un but also noted canada is one of the original signatories of the artemis accords, the u.s.-led effort to develop guidelines for sustainable space exploration. nasa administrator bill nelson didn’t take a stand on how stm should be developed. “space traffic management becomes much easier if spacefaring nations will stop polluting, particularly with asat tests,” he said. “i think it’s a must to have regulations that are applicable everywhere,” said giorgio saccoccia, president of the italian space agency asi. “we cannot talk about sustainability of our planet if we don’t also talk about sustainability of what is around our planet. regulation on stm is part of that.” 
## 3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   san francisco – blue canyon technologies selected exoterra resources to provide electric propulsion for the defense advanced research project agency’s blackjack phase 2 and phase 3 satellites. blue canyon, a raytheon subsidiary,  won a $14.1 million darpa contract  in 2020 to manufacture four blackjack satellites, with options to build 16 additional small satellites for a constellation in low earth orbit to provide communications, missile tracking and navigation services. in 2020, blue canyon  tapped orbion space technology to supply electric propulsion  for its first four blackjack satellites. exoterra was a secondary supplier of hall effect propulsion systems for blue canyon’s first four blackjack satellites. littleton, colorado-based exoterra expects its thrusters to fly on two blue canyon blackjack satellites scheduled to launch in 2022. “we’re thrilled to be working with blue canyon and darpa on this project,” exoterra ceo mike vanwoerkom said in a statement. “being selected by blue canyon validates the hard work we’ve been doing to put the production capabilities in place to meet the growing demand for propulsion from constellations of microsatellites like blackjack.” exoterra has not yet flight proven its halo hall-effect thruster, which fits in one-quarter of a cubesat, vanwoerkom told  spacenews.  exoterra’s first thruster flight is scheduled for march. in response to strong demand for the miniature thrusters, exoterra  moved one year ago  into a 1,022 square meter facility in littleton, colorado, where the firm has enough manufacturing capacity to produce 200 propulsion units per year in addition to solar arrays and radiation-tolerant electronic control systems. exoterra also is preparing for a 2022 flight test of its own 12-unit cubesat equipped with a compact, high-impulse solar electric propulsion module. nasa is funding the cubesat flight through the tipping point program, which supports technologies for sustained moon and mars exploration.
## 3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 washington — reps. doug lamborn (r) and jason crow (d), both from colorado, announced aug. 30 they are introducing legislation to establish a space national guard as a reserve component of the u.s. space force.   lamborn and crow are members of the house armed services committee and co-chairs of the house space force caucus.   the hasc on wednesday is scheduled to take up the national defense authorization act for 2022.  the issue of whether the space force should have its own space national guard has been debated since the space force was signed into law in december 2019.  national guard bureau leaders  have openly challenged dod’s decision to stand up a u.s. space force without defining the role the national guard would play in supporting the new service. eight states — alaska, hawaii, california, colorado, florida, new york, arkansas and ohio — and guam have nearly 2,000 personnel who specialize in space operations. most are from the air national guard and a small number are from the army national guard. guard units have expertise in space operations such as strategic missile warning, space situational awareness, space control, electronic warfare satellite command and control, satellite communications, space launch, and some support the national reconnaissance office. “colorado has more guardsmen conducting space missions than any state in the union. i am happy to join rep. crow on this important issue,” lamborn said in a statement aug. 30. “with more than a third of all national guard members assigned to space missions residing here in colorado, our state will play a key role in providing a proven, ready, combat reserve to space force,” said crow.   earlier this summer, air force and space force leadership told house armed services committee members that they have completed a report required by the 2021 national defense authorization act detailing how they would organize guard and reserve components within the space force. that report has not been publicly released.  
##            author       date
## 3513   Jeff Foust 2021-08-31
## 3514   Jeff Foust 2021-08-31
## 3515 Sandra Erwin 2021-08-31
## 3516   Jeff Foust 2021-08-31
## 3517 Debra Werner 2021-08-30
## 3518 Sandra Erwin 2021-08-30
##                                                                                                                                                                                                                                                                                   postexcerpt
## 3513                                                                      NASA currently has no plans to trade any of its Apollo-era lunar samples with those returned by China’s Chang’e-5 mission, although then agency’s chief scientist held out hope for such an exchange in the future.
## 3514                                                                                 A one-week delay in the launch of the next Landsat satellite on an Atlas 5 is the result of a ripple effect in the supply chain caused by increased demand for liquid oxygen to treat COVID-19 patients.
## 3515 In an interview with SpaceNews, Aerospace Corp. CEO Steve Isakowitz says unprecedented opportunities are emerging for national security space organizations to capture commercial innovation. Defense programs won’t transform overnight, he says, but change is definitely in the air. 
## 3516                                                                                                                          Leaders of national space agencies agree that space traffic management (STM) should be a priority but have differing views on who should be responsible for it.
## 3517                                                                                                         Blue Canyon Technologies selected ExoTerra Resources to provide electric propulsion for the Defense Advanced Research Project Agency’s Blackjack Phase 2 and Phase 3 satellites.
## 3518                                                                                 Reps. Doug Lamborn (R) and Jason Crow (D), both from Colorado, announced Aug. 30 they are introducing legislation to establish a Space National Guard as a reserve component of the U.S. Space Force. \n
##      year
## 3513 2021
## 3514 2021
## 3515 2021
## 3516 2021
## 3517 2021
## 3518 2021

Autores

Y vamos a ver cuáles son los autores más frecuentes de agosto de 2021.

# Contar la frecuencia de cada autor
frecuencia_autores_agosto <- count(datos_agosto_2021, author, sort = TRUE)

# Ver los 5 autores más frecuentes
head(frecuencia_autores_agosto, 10)
##              author  n
## 1        Jeff Foust 64
## 2      Sandra Erwin 46
## 3     Jason Rainbow 33
## 4      Debra Werner 23
## 5      Andrew Jones 10
## 6       Park Si-soo  8
## 7    a.i. solutions  2
## 8  SpaceNews Editor  2
## 9     Anusuya Datta  1
## 10      Austin Link  1

Comparando los 10 autores más frecuentes en agosto de 2021 con los 20 autores más frecuentes en general, podemos hacer varias observaciones:

  1. Consistencia de los principales autores: Algunos de los autores más frecuentes en agosto de 2021, como Jeff Foust y Sandra Erwin, también están presentes en la lista de los 20 autores más frecuentes en general. Esto sugiere que estos autores tienen una contribución constante y significativa a lo largo del tiempo.

  2. Variedad de autores: Aunque hay una superposición entre los dos grupos, también hay autores en la lista general que no aparecen en la lista de agosto de 2021, y viceversa. Esto indica una diversidad en los autores que contribuyen a lo largo del tiempo y en momentos específicos.

  3. Diferencias en la distribución de contribuciones: Algunos autores en la lista general pueden haber contribuido más en otros meses o años, lo que explica su presencia en la lista general pero no en la de agosto de 2021. Del mismo modo, algunos autores que están en la lista de agosto pueden no haber sido tan activos en otros períodos.

  4. Posibles eventos o temas destacados: Si hay una superposición significativa entre los autores más frecuentes en agosto de 2021 y en la lista general, podríamos inferir que los temas o eventos destacados durante ese mes podrían haber sido continuaciones de tendencias o eventos cubiertos por esos autores en el pasado.

WordClouds

En esta sección generaremos WordCLouds para poder varias cual es el uso de palabras más frecuentes.

Vamos a quedarnos sólo con las columnas que nso interesan.

# Seleccionar solo las columnas relevantes
datos_agosto_2021_limpios <- datos_agosto_2021 %>%
  select(title, content, author)

Limpiamos el DataSet datos_agosto_2021.

# Eliminar caracteres raros y limpiar el contenido
datos_agosto_2021_limpios <- datos_agosto_2021_limpios %>%
  mutate(content = str_replace_all(content, 
                                    pattern = "https?://([^/\\s]++)\\S*+|http?://([^/\\s]++)\\S*+",
                                    replacement = "")) %>%
  mutate(content = gsub("[\\x{1F600}-\\x{1F6FF}|\\x{2600}-\\x{26FF}|\\x{2700}-\\x{27BF}|\\x{1F300}-\\x{1F5FF}|\\x{1F680}-\\x{1F6FF}|\\x{1F1E0}-\\x{1F1FF}|\\x{1F900}-\\x{1F9FF}|\\x{1F7E0}-\\x{1F7FF}|\\x{1F918}]", "", datos_agosto_2021_limpios$content, perl=TRUE)) %>%
  mutate(content = gsub("[^[:alnum:][:space:]]", "", content, perl=TRUE)) %>%
  mutate(content = gsub("(#\\w+)|(http\\S+)|(https\\S+)|(&amp;)|(@\\w+)|(RT)", "", content))  %>%
  mutate(content = gsub("\\b\\d+\\b", "", content))

# Verificar los primeros registros del dataset limpio
head(datos_agosto_2021_limpios)
##                                                                                         title
## 3513                                   NASA has no plans to exchange lunar samples with China
## 3514                                         Liquid nitrogen shortage delays Landsat 9 launch
## 3515                            Aerospace Corp. CEO sees winds of change in space procurement
## 3516 Space agencies support space traffic management but differ on how it should be developed
## 3517                                        ExoTerra to provide Blackjack satellite thrusters
## 3518                     Lamborn and Crow propose establishment of Space Force National Guard
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           content
## 3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           washington  nasa currently has no plans to trade any of its apolloera lunar samples with those returned by chinas change5 mission although then agencys chief scientist held out hope for such an exchange in the future speaking at the annual meeting of the lunar exploration analysis group aug  jim green said that the restrictions in us law on bilateral cooperation between nasa and chinese organizations ruled out for the time being any exchange of lunar samples between the two nations currently theres no plans to create a bilateral arrangement with china on the exchange of samples he said citing the wolf amendment the decadeold provision in annual appropriations bills restricting such cooperation green was responding to questions from scientists attending the meeting about such a swap change5 chinas first lunar sample return mission  brought back last december about  kilograms of material from a region near the volcanic complex mons rmker in oceanus procellarum  the material is of interest to scientists because it is relatively young compared to samples returned by earlier apollo missions and sovietera luna robotic sample return spacecraft after the landing chinese officials said they would be willing to share some samples with scientists in other countries countries have previously exchanged samples from lunar and asteroid missions in the 1970s the united states and soviet union exchanged a small amount of lunar samples from their missions green said that nasa has an agreement with the japanese space agency jaxa whereby jaxa is providing samples from the asteroid ryugu returned by the hayabusa2 mission in exchange materials that nasas osirisrex spacecraft is bringing back from the asteroid bennu green noted that the wolf amendment restricts but does not outright prohibit cooperation between nasa and chinese organizations over time focused efforts can be and have been done to win approval by the white house and congress for cooperation he said i would say we have mechanisms and we would use those mechanisms as we move into the future nasa collected  kilograms of lunar material during the six apollo missions that landed on the moon from  through  the next lunar samples are likely to come from the artemis  landing mission scheduled for no earlier than  later in the meeting veteran lunar scientist jim head asked nasa if the agency was contemplating any robotic lunar sample return missions perhaps as part of its commercial lunar payload services clps program where nasa purchases payload delivery services on commercially operated landers since the beginning we have called that an enhanced capability for clps responded joel kearns deputy associate administrator for exploration in nasas science mission directorate however he said doing so would be more difficult that getting landers to survive the twoweek lunar night itself a significant technical challenge its the type of thing we continue to encourage the clps providers to approach he said noting the scientific interest in bringing back lunar samples from different locations he declined to estimate when a clps lunar sample return mission might be feasible
## 3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          washington  a oneweek delay in the launch of the next landsat satellite on an atlas  is the result of a ripple effect in the supply chain caused by increased demand for liquid oxygen to treat covid19 patients nasa announced aug  that the launch of landsat  on an atlas  from vandenberg space force base in california had slipped a week from sept  to no earlier than sept  because pandemic demands for medical liquid oxygen have impacted the delivery of the needed liquid nitrogen supply liquid nitrogen or ln2 is used to create gaseous nitrogen needed to support launch site activities during an aug  virtual news briefing about the upcoming launch del jenstrom nasa landsat  project manager said the issue was not an overall lack of liquid nitrogen but instead a transportation issue theres plenty of liquid nitrogen in the los angeles area the problem is they need some trucks to bring it up to vandenberg he said because of the pandemic from what we understand liquid oxygen deliveries have been paying much higher premiums than liquid nitrogen deliveries and ln2 trucks have been converted to carry liquid oxygen jenstrom said that the defense logistics agency dla informed the project aug  that liquid nitrogen supplies at the base were critically low and could not support upcoming prelaunch test activities or the launch itself that prompted nasa deputy administrator pam melroy to contact senior dla officials to discuss ways to restore the bases nitrogen supply airgas the company that handles the nitrogen supply at vandenberg is bringing in a dozen or so liquid nitrogen tankers from the gulf coast temporarily to increase deliveries were seeing a substantial increase of the number of ln2 deliveries to the base right now he said and as far as we know based on latest reports were on track to support our launch on sept  supply chain issues related directly or indirectly to liquid oxygen which is used by hospitals as the oxygen source for ventilators came to light recently when gwynne shotwell president and chief operating officer of spacex  mentioned them during a panel discussion at the 36th space symposium in colorado springs aug   were actually going to be impacted this year with the lack of liquid oxygen for launch she said we certainly are going to make sure the hospitals are going to have the oxygen that they need but for anybody who has liquid oxygen to spare send me an email at that time tory bruno chief executive of united launch alliance hinted at a problem getting liquid nitrogen to vandenberg to support the upcoming landsat  launch working that situation now bruno said the next launch planned for vandenberg is not the atlas  launch of landsat  instead firefly aerospace has scheduled the inaugural launch of its alpha rocket from the base on sept  during a fourhour window that opens at  pm eastern company spokesperson kim jennett told spacenews aug  the launch remains on schedule and is not affected by any liquid nitrogen or other supply issues liquid oxygen supply chain problems extend beyond the united states dmitry rogozin head of roscosmos  tweeted  aug  that roscosmos had for months been transferring almost all of the oxygen produced by its various enterprises to hospitals that has postponed testing of rocket engines he claimed
## 3515 t he rapid commercialization of space and the establishment of the us space force have created ideal conditions for change in the national security space business says steve isakowitz ceo of the aerospace corp and former president of virgin galactic aerospace based in el segundo california is a federally funded research and development center focused on analysis and assessment of space programs for the defense department nasa and the national reconnaissance office in an interview with  spacenews  isakowitz says unprecedented opportunities are emerging for national security space organizations to capture commercial innovation defense programs wont transform overnight he says but change is definitely in the air   what in particular is driving change in national security space programs the standup of the space force certainly was big creating an organization thats now empowered to make the kinds of decisions that before had been more fractured is a significant development the space force just stood up a space systems command which replaced the former space and missile systems center i think this is going to enhance the coordination across the entire space enterprise that also includes the space rapid capabilities office and the space development agency   aerospace corp worked closely with smc and now with space systems command do you think they will do business differently   not much will change immediately because smc already had undergone a significant amount of reorganization over the past two years an important step taken by smc was to establish the program integration council that includes representatives from dod and intelligence agencies that acquire space systems the council known as pic is a great venue to get all the players around the table and to talk about unity of effort in a better way than they had in the past   everyone recognizes that technology is moving fast the question now is what do we need to do to move faster adopt the technologies in these emerging companies and most importantly outpace the threat what does all this mean for companies that sell products and services to the military   the way companies compete for contracts will not be the same with satellites for example in the past you competed through the normal phases of competition and if you won you pretty much locked that thing up for the next  to  years or even  years that program was yours to grow with i think its going to be much less of that going forward what youre going to find is that its going to be easier for newer companies and technologies to plug into programs that could be done by adding new sensors to a satellite that we could try out or trying smaller satellites in combination with the larger ones for greater resiliency   at aerospace a lot more of our effort will be towards the front end working with the government and with industry understanding where technology is going because you dont want to lock in things too early we want programs that evolve much the same way as the internet where you have protocols and standards that allow you to plug in i think thats what we need to do for national security programs how can the military integrate government and commercial space systems   space is becoming a hybrid architecture not just in the way we often think about it which is small satellites mixed with large satellites its becoming much more of a hybrid architecture in terms of different orbits that now are going to be used frankly were even talking about going out to cislunar i think its becoming much more hybrid in terms of satellites being able to talk to each other through optical links and so on its not just for the same mission but across different missions   we used to build ground systems that were dedicated for a specific mission i think now theyre going to be multipurpose so from that standpoint youre going to see much more mixing and matching and this can only happen if you get the kind of coordination and standardization that i talked about earlier there is a lot of talk about space as a service provided by commercial firms should dod consider buying services instead of hardware   i think the government recognizes the value of trying to leverage whats happening in the commercial sector when i joined aerospace five years ago i thought that the industry was going to transform itself quite a bit with commercial activity and new technologies i was actually wrong because its transformed itself much more than i would have ever predicted and it is moving really fast and i think the government recognizes that   we are not the only one these days that talk about billions of dollars private industry is raising billions of dollars these are big numbers and the government would be short sighted not to take full advantage of that kind of capability going forward  
## 3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    colorado springs  leaders of national space agencies agree that space traffic management stm should be a priority but have differing views on who should be responsible for it during a panel discussion at the 36th space symposium aug  the heads of space agencies in europe and north america emphasized the importance of space traffic management given the growing amount of space objects in orbit and the threat they pose to space activities space traffic management is from our point of view a very important topic said walther pelzer head of the german space agency dlr he argued though against quick solutions at a national level from a german point of view this is not the right way he said if everyone comes up with their own ideas is will not be sustainable he supported instead an approach led by the united nations to get united nations and the word speed into one sentence is kind of hard and we are aware of it he acknowledged nevertheless we have to do space traffic management within the united nations to have this issue sorted out sustainably later in the panel pelzer cited as an example the ongoing discussions about stm at the uns committee on the peaceful uses of outer space copuos i think this is the right way to discuss it within the united nations and the most important players to find a common solution but josef aschbacher director general of the european space agency said relying on the un alone was not enough we need to act urgently he said we also need to find other means because if we wait for those processes to finalize as walther was saying very eloquently we cannot wait that long he supported alternative approaches that could be done in parallel with the longterm unled approach but could be implemented sooner we need to find another mechanism which is among the major players he said to really regulate and make sure our environment remains a safe place to operate our satellites we do need a strong international regulation because there will be many new actors from new countries said philippe baptiste head of the french space agency cnes he said the fact that current private space operators are responsible is great but that alone was not sufficient he didnt explicitly endorse an approach led by the un or other multinational alternatives collaborating on space missions is fundamental but ensuring a strong international governance framework is equally important its a priority for us said lisa campbell president of the canadian space agency she supported development of guidelines for longterm sustainability of space at the un but also noted canada is one of the original signatories of the artemis accords the usled effort to develop guidelines for sustainable space exploration nasa administrator bill nelson didnt take a stand on how stm should be developed space traffic management becomes much easier if spacefaring nations will stop polluting particularly with asat tests he said i think its a must to have regulations that are applicable everywhere said giorgio saccoccia president of the italian space agency asi we cannot talk about sustainability of our planet if we dont also talk about sustainability of what is around our planet regulation on stm is part of that 
## 3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    san francisco  blue canyon technologies selected exoterra resources to provide electric propulsion for the defense advanced research project agencys blackjack phase  and phase  satellites blue canyon a raytheon subsidiary  won a  million darpa contract  in  to manufacture four blackjack satellites with options to build  additional small satellites for a constellation in low earth orbit to provide communications missile tracking and navigation services in  blue canyon  tapped orbion space technology to supply electric propulsion  for its first four blackjack satellites exoterra was a secondary supplier of hall effect propulsion systems for blue canyons first four blackjack satellites littleton coloradobased exoterra expects its thrusters to fly on two blue canyon blackjack satellites scheduled to launch in  were thrilled to be working with blue canyon and darpa on this project exoterra ceo mike vanwoerkom said in a statement being selected by blue canyon validates the hard work weve been doing to put the production capabilities in place to meet the growing demand for propulsion from constellations of microsatellites like blackjack exoterra has not yet flight proven its halo halleffect thruster which fits in onequarter of a cubesat vanwoerkom told  spacenews  exoterras first thruster flight is scheduled for march in response to strong demand for the miniature thrusters exoterra  moved one year ago  into a  square meter facility in littleton colorado where the firm has enough manufacturing capacity to produce  propulsion units per year in addition to solar arrays and radiationtolerant electronic control systems exoterra also is preparing for a  flight test of its own 12unit cubesat equipped with a compact highimpulse solar electric propulsion module nasa is funding the cubesat flight through the tipping point program which supports technologies for sustained moon and mars exploration
## 3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  washington  reps doug lamborn r and jason crow d both from colorado announced aug  they are introducing legislation to establish a space national guard as a reserve component of the us space force   lamborn and crow are members of the house armed services committee and cochairs of the house space force caucus   the hasc on wednesday is scheduled to take up the national defense authorization act for   the issue of whether the space force should have its own space national guard has been debated since the space force was signed into law in december   national guard bureau leaders  have openly challenged dods decision to stand up a us space force without defining the role the national guard would play in supporting the new service eight states  alaska hawaii california colorado florida new york arkansas and ohio  and guam have nearly  personnel who specialize in space operations most are from the air national guard and a small number are from the army national guard guard units have expertise in space operations such as strategic missile warning space situational awareness space control electronic warfare satellite command and control satellite communications space launch and some support the national reconnaissance office colorado has more guardsmen conducting space missions than any state in the union i am happy to join rep crow on this important issue lamborn said in a statement aug  with more than a third of all national guard members assigned to space missions residing here in colorado our state will play a key role in providing a proven ready combat reserve to space force said crow   earlier this summer air force and space force leadership told house armed services committee members that they have completed a report required by the  national defense authorization act detailing how they would organize guard and reserve components within the space force that report has not been publicly released  
##            author
## 3513   Jeff Foust
## 3514   Jeff Foust
## 3515 Sandra Erwin
## 3516   Jeff Foust
## 3517 Debra Werner
## 3518 Sandra Erwin

Creamos un corpus con sus respectivos metadatos.

# Crear un corpus
corpus <- quanteda::corpus(datos_agosto_2021_limpios$content)

# Crear metadatos
docvars(corpus, "tittle") <- corpus$tittle
docvars(corpus, "content") <- corpus$content
docvars(corpus, "author") <- corpus$author

corpus <- tokens(corpus)

Obtemos las stopwords en inglés para eliminar y que no aparezcan.

# Obtener las stopwords en inglés
palabras_a_eliminar <- stop_words$word

Terminamos de limpiar el corpus antes de realizar el WordCloud con las palabras más frecuentes.

# Crear corpus limpio
corpus_limpio <- quanteda::tokens(corpus,
                                what="word",
                                remove_numbers=TRUE,
                                remove_punct=TRUE,
                                remove_symbols=TRUE,
                                remove_separators=TRUE,
                                remove_url=TRUE)

# Eliminar stopwords  
corpus_limpio <- tokens_select(corpus_limpio,
                               pattern = palabras_a_eliminar,
                               selection = "remove")

Creamos la matriz.

# Crear matriz
myStemMat <-dfm(corpus_limpio)

# Sacar hasta 60 top words
print(topfeatures(myStemMat, n = min(60, nfeat(myStemMat))))
##         space        launch    satellites       company     satellite 
##          1571           728           424           362           357 
##         orbit         force           aug       mission        rocket 
##           311           301           287           276           267 
##          nasa    commercial       million   development       program 
##           228           219           213           189           187 
##       systems         earth        system    spacecraft      services 
##           185           178           178           173           173 
##      national     companies        flight       vehicle    technology 
##           168           166           164           157           153 
##          time    government        spacex      industry         plans 
##           152           151           146           144           143 
##        agency      missions          data         lunar       defense 
##           138           135           134           133           133 
##           air constellation           gps       support      security 
##           131           128           128           123           116 
##       station     announced          test          july          blue 
##           116           115           115           111           110 
##      business       provide      launches       command      military 
##           109           109           105           104           102 
##       funding         chief         china      contract     customers 
##           100            97            97            97            97 
##      colorado international    operations     including           low 
##            96            96            96            96            95

Generamos el WordCloud.

# Crear semilla para crear una imagen 
set.seed(100)

# Información de la imagen
png(filename="wordcloud_agosto.png",
    width=3000,
    height=3000)

# Generar el WordCloud
textplot_wordcloud(myStemMat, 
                   min_count = 10, 
                   random_order = FALSE,
                   rotation = 0,
                   color = RColorBrewer::brewer.pal(8,"Dark2"))

# Cerrar conexión
dev.off()
## png 
##   2

  1. Temas Destacados:
    • Space: La palabra “space” encabeza la lista, lo que indica que los artículos están relacionados con el espacio en general.
    • Lanzamientos (Launch) y Satélites (Satellites): El gran número de menciones de “launch” y “satellites” sugiere un enfoque en lanzamientos de cohetes y despliegue de satélites durante ese mes.
    • Empresas Espaciales (Company): La presencia de “company” indica un interés en las actividades de las empresas espaciales.
    • Órbita (Orbit): La mención frecuente de “orbit” sugiere discusiones sobre órbitas terrestres y orbitales.
  2. Involucrados y Participantes:
    • NASA: La NASA es una entidad prominente en el ámbito espacial y su presencia sugiere discusiones sobre actividades y misiones de la agencia espacial.
    • SpaceX: La aparición de “SpaceX” indica un interés particular en las actividades y logros de esta empresa aeroespacial.
    • Industria Espacial (Industry): La presencia de “industry” sugiere un enfoque en la industria espacial en general.
  3. Tecnología y Desarrollo:
    • Tecnología (Technology): La tecnología espacial es un tema relevante, como lo sugiere la alta frecuencia de “technology”.
    • Desarrollo (Development): La presencia de “development” indica un enfoque en el desarrollo de tecnología y sistemas espaciales.
  4. Misiones y Programas Espaciales:
    • Misiones (Missions): Las misiones espaciales son un tema importante, como lo sugiere la alta frecuencia de “missions”.
    • Programas (Program): La aparición de “program” sugiere discusiones sobre programas espaciales y de exploración.
  5. Otros Temas Destacados:
    • Tierra (Earth): Aunque no tan frecuente como otros términos, “Earth” indica discusiones sobre temas relacionados con nuestro planeta.
    • Defensa (Defense): La presencia de “defense” sugiere un enfoque en aspectos de defensa y seguridad espacial.
    • Negocios Espaciales (Business): La aparición de “business” indica discusiones sobre aspectos comerciales y económicos del sector espacial.

En agosto de 2021 hubo varios lanzamientos y misiones destacadas en el ámbito espacial. Algunos de estos son:

  1. Lanzamiento del Mars Rover de la NASA:
    • El Mars Rover “Perseverance” de la NASA, lanzado en julio de 2020, aterrizó en Marte el 18 de febrero de 2021, pero en agosto continuó realizando exploraciones y recopilando datos en la superficie marciana.
# Buscar la noticia
noticia_rover <- datos_agosto_2021_limpios[grep("mars rover", datos_agosto_2021_limpios$content, ignore.case = TRUE), ]

# Mostrar la noticia encontrada
print(noticia_rover)
##                                                   title
## 3661 Perseverance first sampling attempt comes up empty
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       content
## 3661 washington  nasa scientists and engineers are working to understand why the first sampling attempt by the mars rover perseverance failed to collect any material in a statement late aug  nasa said that while perseverance had drilled a sample from a rock on the floor of jezero crater that sample did not make it into a titanium sampling tube that would store the material for eventual return to earth jessica samuels surface mission manager for perseverance at the jet propulsion laboratory said that part of the automated sample collection process is to insert a probe into the sample tube to measure the volume of the sample it contains the probe did not encounter the expected resistance that would be there if a sample were inside the tube she said in the nasa statement its unclear why the sample didnt make it into the tube but for now project officials believe it is more likely unforeseen properties of the rock kept it from entering the tube rather than a malfunction of the sampling system itself over the next few days the team will be spending more time analyzing the data we have and also acquiring some additional diagnostic data to support understanding the root cause for the empty tube jennifer trosper project manager for perseverance at jpl said in the statement that work will include imaging the drill hole with a camera on the rovers robotic arm past tests of the sampling system both on earth before launch and on mars since its landing six months ago showed no problems that included processing last month of a witness tube a sampling tube without any material to measure any contamination the great news is that all that worked perfectly and we are ready to sample trosper said at a july  briefing about the mission in a worstcase scenario a problem with the sampling system would upend nasas longterm mars exploration strategy perseverance is the first of three missions by nasa and the european space agency to collect and return mars samples to earth the samples cached by perseverance will be collected by a nasaled lander mission which will place them into a container and launch it into martian orbit an esaled orbiter will grab that container and return it to earth those two later missions still in their early phases of development will launch no earlier than  returning the samples to earth as soon as  nasa though emphasized that past mars missions have run into problems drilling or gathering martian materials that ranges from sticky soil that made it difficult for the phoenix lander in  to scoop material into its instruments to the failure of a heat flow probe or mole to drill into the martian surface on the insight mission while this is not the holeinone we hoped for there is always risk with breaking new ground thomas zurbuchen nasa associate administrator for science said in the agency statement im confident we have the right team working this and we will persevere toward a solution to ensure future success i have been on every mars rover mission since the beginning and this planet is always teaching us what we dont know about it said trosper one thing ive found is its not unusual to have complications during complex firsttime activities
##          author
## 3661 Jeff Foust
  1. Lanzamiento de Starliner de Boeing:
    • La cápsula CST-100 Starliner de Boeing realizó su segundo vuelo de prueba no tripulado el 3 de agosto de 2021. El objetivo del vuelo era demostrar la capacidad de Starliner para acoplarse con la Estación Espacial Internacional (EEI).
# Buscar la noticia
noticia_starliner <- datos_agosto_2021_limpios[grep("starliner", datos_agosto_2021_limpios$content, ignore.case = TRUE), ]

# Mostrar la noticia encontrada
print(noticia_starliner)
##                                                            title
## 3616               Starliner test flight faces months-long delay
## 3660                           Starliner investigation continues
## 3688                              Starliner glitch delays launch
## 3696 Starliner resets for next launch attempt after ISS problems
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        content
## 3616 updated  pm eastern after media teleconference washington  a test flight of boeings cst100 starliner commercial crew vehicle will be delayed for at least several months to fix a problem with valves on the spacecraft boeing announced aug  that it will remove the starliner spacecraft that was to launch this month on the orbital flight test oft  mission from its atlas  rocket and return it to the companys commercial crew and cargo processing facility at the kennedy space center for additional work this is obviously a disappointing day kathy lueders nasa associate administrator for human exploration and operations said in a call with reporters aug  this team is going to go figure this out and we will go fly when we are ready boeing  scrubbed an aug  launch attempt  after discovering problems with what the company later said were  valves in the spacecrafts propulsion system that were unexpectedly closed after being unable to resolve the problem while the spacecraft was on the pad boeing and united launch alliance rolled the atlas  back to its vertical integration facility to give technicians access to the spacecraft as of aug  boeing said it had fixed  of the  valves after the application of electrical and thermal techniques to open them four other valves remained closed and were still being worked on john vollmer vice president and program manager of boeings commercial crew program said on the media call that the leading cause of the valve problem is that nitrogen tetroxide nto the oxidizer used for starliners thrusters permeated teflon seals in the valves that nto interacted with moisture on the dry side of the valve creating nitric acid the acid corroded the valves causing them to stick in the closed position he said the nine valves they were able to open then worked normally but the company ran out of options to fix the remaining four valves while still stacked on the atlas  we made the decision that we were just out of runway and we had to come back to the factory to complete anything else we needed to do he said boeing tested the valves when it fueled the spacecraft about five weeks before rolling out to the launch site in midjuly all of them operated perfectly vollmer said the valves provided by aerojet rocketdyne are the same as those used on the original oft mission in december  as well as a pad abort test in november  which did not experience similar problems vollmer said its not certain where the moisture came from but could have happened during assembly of the spacecraft in the factory or exposure to humid conditions on the pad just before launch he ruled out water intrusion from a thunderstorm the night before the scheduled launch as a factor although he said the storm did cause some erroneous sensor readings that took time to sort out once starliner is back in the factory he said engineers will take a deliberate process to study the valve problem including determining what portions of the spacecraft need to be disassembled to correct the problem he added its too soon to say if all the valves including those working properly will need to be replaced the decision to remove starliner from the atlas  means an extended delay for oft2 even if the problem is quickly solved boeing will have to wait until after the midoctober launch of nasas lucy asteroid mission on another atlas  before beginning preparations for another launch that launch would wait until after the launch of spacexs crew3 commercial crew mission scheduled for the end of october and the return to earth of the crew2 spacecraft freeing up the docking port for starliner its pretty early to speculate on when the flight might end up said steve stich nasa commercial crew program manager when we get to a point where we understand the cause and the fixes we will work hard to find that slot and get the vehicle flown as soon as we can the launch of oft2 they acknowledged could slip into  or more than two years after the original flawed oft mission its probably too early to say whether its this year or not vollmer said if we could fly this year it would be fantastic boeing said in january  it would fly the oft2 mission at its own expense after correcting the software and communications problems found on the first test flight however when asked if boeing would cover the costs of this latest delay vollmer declined to confirm it i dont know that i have the complete answer to that he said lueders said she was not frustrated by the extended delay you might be hearing us sound a little tired because teams have been working really hard but were not frustrated she said im a little sad because i wanted to go fly but im also very proud of the team
## 3660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      washington  boeing is continuing its investigation into the thruster issue that delayed the launch of its cst100 starliner commercial crew vehicle but could soon run into schedule conflicts on both the international space station and with its launch vehicle in an aug  statement boeing said it was continuing to study why several valves in the propulsion system of the spacecraft were unexpectedly in the closed position during the countdown to the aug  launch attempt of the orbital flight test oft  mission an uncrewed test flight  boeing scrubbed the launch about three hours before the scheduled liftoff  because of the problem the starliner atop its atlas  rocket is back in the vertical integration facility vif at space launch complex  at cape canaveral allowing engineers access to the spacecraft they were able to open some valves by issuing a new set of commands cautiously optimistic is a good way to describe how the team is feeling john vollmer boeing vice president and commercial crew program manager said in a statement what caused the valves to malfunction isnt clear although boeing said in an earlier statement that they had ruled out software problems one possibility is damage such as water intrusion during a severe thunderstorm shortly after the rocket was rolled out to the pad aug  neither nasa nor boeing have set a new launch date for the oft2 mission boeing said in its statement that it is assessing multiple launch opportunities for starliner in august and will work with nasa and united launch alliance to determine an appropriate launch date nasa in its own statement aug  said it and boeing will continue to evaluate schedules based on where the troubleshooting efforts take them before deciding when the next official launch for the oft2 mission will take place a combination of factors could force an extended delay if the oft2 mission does not launch by late august a falcon  is scheduled to launch the crs23 cargo mission to the iss aug  it will use the same docking port as starliner will for oft2 meaning that if oft2 does not complete its mission by late august nasa will either have to postpone crs23 or wait until that mission is done likely no earlier than late september by that point however ula will need to focus on preparations for its next atlas  launch nasas lucy asteroid mission that mission has a threeweek launch window that opens in midoctober the atlas  for oft2 would have to be destacked and the one for lucy assembled in the vif with the spacecraft then installed and tested given the narrow window for lucy additional testing of the vehicle is likely to find any problems well ahead of the opening of the launch window an additional complication is that this will be taking place during the height of the tropical weather season with the potential for tropical storms and hurricanes delaying launches or launch preparations by days if oft2 does not launch by the time its atlas  needs to be destacked to prepare for the lucy mission the next opportunity may not be until november after the spacex crew dragon crew3 mission launches at the end of october and the crew2 mission returns home freeing up a docking port for starliner
## 3688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      updated  pm eastern with new delay washington  a problem with boeings cst100 starliner commercial crew vehicle scrubbed a launch attempt aug  pushing back its uncrewed test flight by several days boeing announced about three hours before the scheduled  pm eastern liftoff that the launch had been postponed for the day in a statement a short time later the company said engineers detected unexpected valve position indications in the propulsion system of the spacecraft the problem was originally noticed during checkouts of the spacecraft after lightning in the vicinity of the launch pad at cape canaveral space force station the day before the spacecraft atop its atlas  rocket rolled out to the pad early that day the company didnt elaborate on the issue or why they scrubbed the launch at that point in the countdown the company had not reported any other issues with the spacecraft during the countdown weather remained questionable though with a  chance of acceptable conditions at liftoff  were disappointed with todays outcome and the need to reschedule our starliner launch john vollmer boeing vice president and program manager of its commercial crew program said in a statement boeing and nasa teams will take the time they need to ensure the safety and integrity of the spacecraft and the achievement of our mission objectives late aug  nasa and boeing announced they would not attempt a launch on the next opportunity aug  boeing said engineers had ruled out a number of potential causes including software and need more time to investigate the problem crews will roll the rocket back to its vertical integration facility on aug  to support additional investigation after aug  the next launch opportunity based on orbital mechanics is aug  but nasa and boeing did not state when they thought they would be ready to make the next launch attempt the launch was scheduled for july  but  postponed when the iss temporarily lost attitude control  when thrusters on the nauka module fired several hours after the module docked with the station july  starliner will launch on a mission called orbital flight test oft  a rerun of the original oft mission launched in december  that mission suffered serious software problems after reaching orbit calling off a docking attempt with the iss and forcing the spacecraft to land after just two days an independent review in early  made  recommendations to correct software issues with starliner as well as communications problems it experienced during the flight nasa and boeing confirmed in prelaunch reviews for oft2 that the company had closed out all the recommendations  a successful oft2 mission would allow nasa and boeing to proceed with a crewed flight test with three nasa astronauts on board as soon as the end of this year although industry sources believe a launch in the first half of  is more likely it would leave boeing at least a year and a half behind spacex which first launched astronauts on its crew dragon spacecraft in may  and is currently in the middle of its second operational mission to the station its extremely important to us that were successful on this flight with all that weve done over the past  months we are very confident that we are going to have a good flight vollmer said at a july  briefing about the upcoming oft2 mission it is of paramount importance that we have a successful flight
## 3696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         washington  nasa and boeing say theyre ready to make a second attempt to launch the companys cst100 starliner spacecraft on an uncrewed test flight after an incident at the international space station called off the first attempt last week starliner was scheduled to launch july  but  a temporary loss of attitude control at the station july  caused by thruster firings of the nauka module several hours after it docked with the station  led nasa to postpone the launch we want to ensure the space station is in a stable configuration and ready for starliner to arrive steve stich nasa commercial crew program manager said at a july  briefing the next opportunity to launch starliner was aug  assuming the station was able by then to support a docking nasa announced late july  that they were proceeding with a launch that day in an instantaneous launch window at  pm eastern from cape canaveral space force station weather forecasts project a  chance of acceptable weather for the launch a launch on aug  would set up starliner for a docking attempt at  pm eastern aug  starliner would remain at the station until aug  undocking at  am eastern and landing at white sands new mexico about four hours later after the postponement of the first launch attempt united launch alliance rolled the atlas  rocket carrying starliner back to its assembly building july  to protect the vehicle from the weather the rocket is slated to roll back out to the pad aug  no other servicing of the spacecraft was planned before the next launch attempt starliner and the atlas are in a good configuration and they can stay in the config theyre in for quite a number of launch opportunities stich said while nasa confirmed plans for the next launch attempt its said little about the incident with nauka that caused the delay there have been no other issues reported with the new module since its docking and russian cosmonauts oleg novitskiy and pyotr dubrov entered the module for the first time july  vladimir solovyov designer general of rsc energia and flight director of the russian segment of the iss said in a roscosmos statement july  that the thruster firing was caused by a software problem due to a shortterm software failure a direct command was mistakenly implemented to turn on the modules engines for withdrawal which led to some modification of the orientation of the complex as a whole he said neither nasa nor roscosmos have disclosed additional information about the problem and how they ensured it would not happen again at the july  briefing nasa officials played down the severity of the problem which the agency originally said caused the station to drift  degrees out of its intended attitude we have all sorts of contingency plans joel montalbano nasa iss program manager said at the july  briefing station controllers were seeing goodness come to us fairly quickly and we able to get us back to a stable attitude within the hour however the situation may have been more serious than what nasa originally claimed publicly available telemetry showed much greater excursions in roll pitch and yaw during the hour it took to restore the stations attitude reports of iss only being  degrees out were premature zebulon scoville a nasa iss flight director  tweeted  july  we proceeded to do headstands and cartwheels olympic judges would be proud
##          author
## 3616 Jeff Foust
## 3660 Jeff Foust
## 3688 Jeff Foust
## 3696 Jeff Foust
  1. Lanzamiento de Satélites Starlink de SpaceX:
    • SpaceX continuó con su constelación de satélites Starlink, lanzando múltiples lotes de satélites durante agosto de 2021. Estos satélites se utilizan para proporcionar servicios de Internet de alta velocidad en áreas remotas de la Tierra.
# Buscar la noticia 
noticia_starlink <- datos_agosto_2021_limpios[grep("starlink", datos_agosto_2021_limpios$content, ignore.case = TRUE), ]

# Mostrar la noticia encontrada
print(noticia_starlink)
##                                                                               title
## 3526                            SpaceX ends launch hiatus with cargo Dragon mission
## 3532        Amazon calls on FCC to reject SpaceX’s amended second-gen Starlink plan
## 3533  Global microelectronic shortages trickle down to military satellite programs 
## 3538                      All future Starlink satellites will have laser crosslinks
## 3544                            Liquid oxygen shortage squeezes SpaceX launch plans
## 3589    SpaceX wants to give Starship lead role in revised second-gen Starlink plan
## 3600                       Firefly hires former SpaceX, Blue Origin engineer as COO
## 3618                             Exponential growth of cubesats may be tapering off
## 3659                                           SpaceX to acquire Swarm Technologies
## 3675                          Planet and SpaceX announce multiyear launch agreement
## 18692                        Managing Constellations: A Flight Dynamics Perspective
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       content
## 3526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          washington  spacex performed its first falcon  launch in two months aug  sending a cargo dragon spacecraft to the international space station the falcon  lifted off from launch complex 39a at the kennedy space center at  am eastern after a oneday delay because of weather the dragon spacecraft separated from the rockets upper stage about  minutes after liftoff and is scheduled to dock with the station at about  am eastern aug  for an approximately onemonth stay the launch was the first for a falcon  since the june  launch of the transporter2 rideshare mission the longest pause since a threemonth gap between launches from august to november  one reason for the hiatus was  a delay in starlink launches to equip those satellites with laser intersatellite links  the majority of the falcon  launches this year have been starlink missions we launch when our customers need us to launch sarah walker director of dragon mission management at spacex said during a prelaunch briefing aug  she said the company took advantage of the gap to look for small improvements in launch operations but nothing major changed in terms of preparations for this launch one more significant change is the use of a new spacex droneship called a shortfall of gravitas to serve as the landing pad for the falcon  first stage this droneship the third in spacexs fleet features what walker called great upgrades including the capability to operate completely autonomously on this launch though the droneship was accompanied by a tug as with previous droneship missions it joins just read the instructions for supporting launches from cape canaveral we needed a third vehicle to support the high launch cadence were seeing at spacex right now she said the third droneship of course i still love you is now in california for upcoming launches from vandenberg space force base the dragon is carrying  kilograms of cargo about half of which is research from materials science to biology also on the spacecraft is a small robotic arm developed by japanese company gitai that will be tested in nanorackss bishop commercial airlock as well as various hardware components for the station unlike many previous dragon cargo missions there is no external cargo in the trunk section jennifer scott williams manager of the applications client support office for the iss program at nasa said that supply issues and other interruptions due to the pandemic caused payloads intended to go in the trunk on this launch to slip to future missions that includes a payload for the defense departments space test program called stph7 which will now launch together with stph8 on the next cargo dragon mission later this year this cargo dragon previously flew the crs21 cargo mission in late  and is the first of the upgraded cargo dragons introduced on the crs21 mission and based on the crew dragon spacecraft to be reused walker said upgrades to the cargo dragon allowed spacex to cut the time needed to refurbish the spacecraft to half or even a third of that needed for the firstgeneration cargo dragons the falcon  booster on this launch was on its fourth flight having previously launched the crew1 and crew2 commercial crew missions and most recently the sxm8 communications satellite
## 3532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        colorado springs  amazon is urging the federal communications commission to dismiss spacexs amended plans for its secondgeneration starlink constellation saying they are too broad and speculative spacex  proposed two potential configurations  for nearly  followon satellites aug  which amazon said breaks fcc rules that require details of a proposed amendment to be settled before filing such an application spacex intends to proceed with just one of the options but amazon said filing for two also doubles the technical effort that operators face to review interference and orbital debris concerns should the commission depart from its rules and precedent and endorse the approach of applying for multiple mutually exclusive configurations the consequences will extend far beyond the spacex amendment wrote mariah shuman corporate counsel for amazons broadband megaconstellation venture project kuiper in an aug   letter to the fcc  however inefficient this strategy might be for the commission and parties responding to applications other prospective licensees will surely see the benefit in maximizing their optionality by describing multiple configurations in their license applications shuman asked the fcc to  dismiss spacexs amendment and invite spacex to resubmit its amendment after settling on a single configuration for its gen2 system project kuiper has yet to deploy any of its planned broadband satellites  spacex said in a july presentation that it had launched  satellites for its firstgeneration starlink constellation so far serving around  customers in  countries the secondgeneration starlink network promises faster speeds lower latency more backhaul capacity and the ability to serve more people worldwide than the first generation as with spacexs original plan for starlink gen2 last year both configurations call for nearly  satellites in low earth orbit but they aim to spread them more evenly across nine to  inclined orbits to improve coverage for rural national security and first responder customers  the two configurations differ from each other in how these satellites are arranged along different orbital parameters spacex said its preferred configuration uses starship to deploy the constellation faster    this article was edited aug  with additional comments from amazon
## 3533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                colorado springs  defense department satellite programs are feeling the effects of the widespread microchip shortage that has stymied carmakers and consumer electronic manufacturers the defense advanced research projects agency is hoping to launch as many as  satellites into low earth orbit next year for the blackjack program but supply shortages are creating schedule risk for the military space network demonstration  blackjack program manager stephen forbes told  spacenews  that darpa is still planning to start launching satellites in summer  but supply shortages hampering manufacturers could lead to delays darpa has ordered  satellite buses from blue canyon technologies two from telesat and is buying payloads from several suppliers  our performers are doing a really good job but its taking a lot more effort than we ever expected to hunt down capacitors and other stuff like that forbes said by phone from washington if components are not available we will be at the mercy of the supply chain he said  forbes said the supply chain disruptions caused by the covid19 pandemic  are especially vexing for programs like blackjack that buy satellites in small numbers  were actively working all of our parts issues and trying to make sure that we can find the parts that we need especially when were buying onesies and twosies he said were near the bottom of the priority queue forbes said no blackjack vendors are immune from the supply chain disruption every single performer has components that are currently late because of the supply chain forbes added were just behind the crush of everybody trying to build consumer electronics while factories are being shut down most of the components used in government satellites are commodities that are used by a variety of global manufacturers forbes noted theres nothing exquisite or exotic about them he said we are really trying to leverage commercial components on the electronics side which means were competing for the same parts that ford and gm despite these challenges i think its fair to categorize the current supply chain as a schedule risk that the performers are actively managing on a daily basis the space development agency is another pentagon smallsat buyer watching the supply situation sda is building a mesh communications network in low earth orbit and is about to issue a solicitation for  smallsats it aims to launch in  the order is likely to be split among three manufacturers yes we do see supply chain difficulties from a lot of our vendors sda director derek tournear said aug  at the 36th space symposium these include microelectronics difficulties that are causing people to actually make some modifications on their designs to use alternate vendors so far none of these issues have affected sdas schedule for its envisioned transport layery constellation primarily because the vendors were able to work other customers and get the microelectronics ahead of schedule for our program and pay back other programs said tournear and some vendors actually made some design changes to do that how vendors manage the supply chain is one of the evaluation criteria used by sda to select suppliers he said we want vendors to not only have a good solid design but have a good solid manufacturing plan and show us their longlead items and how theyre going to mitigate any shortages the chip shortage is currently affecting one of the industrys largest smallsat manufacturers spacex which has built and launched more than  starlink satellites to date thats whats delayed the new user terminals spacex president gwynne shotwell said during a leo constellation panel discussion aug  at space symposium 
## 3538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             colorado springs  spacex is adding laser terminals on all future starlink satellites and is the reason behind a break in launches for the broadband megaconstellation president and chief operating officer gwynne shotwell said shotwell told the space symposium aug  that its decision to add laser crosslinks enabling the satellites to communicate with each other to reduce their reliance on ground stations is why we have been struggling to launch a starlink mission since june  spacex had been conducting an aggressive launch campaign with its falcon  rocket throughout the first half  before the hiatus enlarging the starlink constellation to more than  satellites in low earth orbit typically each falcon  launch for the network has placed  starlink satellites at a time there were four starlink launch missions this may alone spacex has regulatory permission to operate  satellites at 550kilometers altitude for global coverage shotwell said the next starlink launch will be in roughly three weeks spacex launched  starlink satellites with laser crosslinks to polar orbit in january its first with the capability so it did not need ground stations over the poles by enabling communications from one satellite to another on the same or adjacent orbital plane a ground station does not have to be in the same satellite footprint as user terminals as well as reducing the number of ground stations needed for global coverage laser crosslinks links can also lower latency because they reduce the number of hops between satellites and ground stations antenna pain point the price of user terminals remains a challenge for spacex which is heavily subsidizing them shotwell told the conference that spacex continues to lose money on user terminals with every customer it acquires because their cost is higher than the average user can afford we were able to tackle almost all of the elements of the cost before we rolled out service with the exception of the user terminal she said she said the company is on track to reduce the cost of its user terminals which are priced to consumers at  by roughly half before the end of this year and then we think well be able to cut that in half yet again she added however she pointed to a global lack of semiconductors that has delayed the new user terminals and  a shortage of liquid oxygen  that is posing other challenges for the launch side of its business
## 3544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            colorado springs  a widespread shortage of liquid oxygen linked to the latest wave of the pandemic could affect spacexs launch schedule a company executive said aug  speaking on a panel at the 36th space symposium here gwynne shotwell president and chief operating officer of spacex cited difficulties in securing supplies of liquid oxygen as one of its biggest supply chain concerns were actually going to be impacted this year with the lack of liquid oxygen for launch she said we certainly are going to make sure the hospitals are going to have the oxygen that they need but for anybody who has liquid oxygen to spare send me an email liquid oxygen is one of the most commonly used propellants in launch vehicles it serves as an oxidizer in combination with fuels such as liquid hydrogen kerosene and methane demand for liquid oxygen has soared in recent weeks because of the rise of covid19 cases caused by the delta variant hospitals use liquid oxygen as a source of oxygen for ventilators that demand has had wideranging effects on the liquid oxygen supply chain in florida the orlando utilities commission announced aug  that its weekly deliveries of liquid oxygen used in water purification systems had been cut by up to  officials asked city residents and businesses to reduce their use of water to avoid water shortages that could be caused by the reduced capacity of its purification systems shotwell didnt elaborate on the impacts of the liquid oxygen shortage on its launch schedule the company has not launched a falcon  rocket since june  an unusually long hiatus caused in part by delays in the production of new starlink satellites with laser intersatellite links however spacex is scheduled to end that break with the falcon  launch of a cargo dragon spacecraft to the international space station aug  from the kennedy space center other companies are seeing impacts of the liquid oxygen shortage in  a tweet  after the conference session tory bruno chief executive of united launch alliance said that the government contractor that supplies nitrogen for its launch facilities at vandenberg space force base in california is now working on addressing the liquid oxygen shortage in florida that could impact plans for the launch of the landsat  spacecraft from vandenberg on an atlas  currently scheduled sept  working that situation now bruno said
## 3589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tampa fla  spacex is proposing to use starship to rapidly deploy its secondgeneration starlink constellation providing denser rural coverage without needing more than the  satellites it previously envisioned for the followon network the proposal is one of two revised configurations that  spacex filed aug   with the federal communications commission for starlink gen2 updating a plan submitted in   the other configuration envisages continuing to use falcon  rockets for launching starlink satellites and also does not involve a larger constellation or require more spectrum than what spacex outlined last year instead the revised scenarios for starlink gen2 aim to spread satellites more evenly across nine to  inclined orbits to provide denser polar coverage for rural subscribers as well as national security and first responder customers to make the networks performance more consistent spacex said it prefers the configuration that uses its heavylift starship rocket because it would allow satellites to enter service within a matter of weeks after launch rather than months the company recently  accelerated work  at its starbase test site in boca chica texas to prepare for starships first orbital flight the starshipenabled starlink configuration comprises  satellites at altitudes of between  and  kilometers across nine inclined orbits by targeting multiple inclinations these revised orbital parameters will more evenly distribute capacity by latitude ensuring better more consistent global coverage spacex said in an fcc filing spacex will also nearly double the number of satellites deployed in sunsynchronous orbit optimized for key throughput demand times and service to polar regions like alaska resulting in additional capacity for those chronically underserved areas  the revised orbital planes enable direct to station launch campaigns that capitalize on the ability of starship to deliver satellites at a faster pace the falcon 9launched configuration would spread  satellites across  orbital inclinations at altitudes between  and  kilometers altitude although the gen2 satellites will be somewhat larger and generate more power than originally contemplated spacex said its analysis shows they would not interfere with other constellations or increase the risk of debriscausing collisions in space as with the more than  starlink satellites spacex currently operates in low earth orbit at an altitude of around  kilometers gen2 spacecraft will rely on collisionavoidance software and onboard propulsion to mitigate debris threats the  increasingly crowded space environment  is a growing concern for businesses and regulators worldwide as a rising number of megaconstellations plan to deploy thousands more leo satellites in the coming years satellite broadband operator viasat has launched legal action against spacex in an attempt to compel an environmental review into its starlink expansion plans as the commission has recognized because spacex has invested in advanced propulsion capabilities for its satellites collision risk with large objects is considered to be zero while the spacecraft are capable of maneuvering spacex said in the fcc filing while spacex expects its satellites to perform nominally and deorbit actively in the unlikely event a vehicle is unable to finish its planned disposal maneuver the denser atmospheric conditions at the low altitudes proposed herein for use by the gen2 system provide fully passive redundancy to spacexs active disposal procedures even in a worstcase scenario where a starlink satellite loses maneuverability and attitude control in operational orbit a satellite in either proposed gen2 configuration would reenter the atmosphere within four years and burn up at lower altitudes than satellites in the firstgeneration starlink constellation and other megaconstellations including oneweb gen2 spacecraft would spend less time illuminated by the sun posing less of a reflection problem for astronomers spacex is asking the fcc for waivers to proceed with either configuration  one of the waivers concerns power flux density kaband downlink limits set by the international telecommunication union itu these limits rely on flawed calculations according to spacex because they were devised without the capability to scale up for nongeostationary constellations with more than  satellites the fcc had told spacex to get a favorable or qualified favorable finding from the itu on its equivalent power fluxdensity epfd limits before initiating services given the volume of pending epfd filings the itu is unlikely to complete its evaluation of the gen2 system and render an epfd finding on a time frame that will match spacexs aggressive constellation deployment schedule spacex said in  a related fcc filing  without a waiver from the fcc spacex warned it would have to postpone providing the more capable and efficient service contemplated under this new constellation until the itu completes its analysis with many gigahertz of valuable spectrum remaining underutilized in the interim
## 3600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              washington  firefly aerospace has hired a former spacex and blue origin engineer as its new chief operating officer to guide the companys shift from development to production although exactly when the companys first launch will take place remains unclear firefly announced aug  that lauren lyons will become chief operating officer of the company based in cedar park texas lyons spent several years at spacex on the dragon falcon  and starlink programs and most recently was a lead systems engineer in the advanced concepts group at blue origin at spacex she also appeared regularly on the companys webcasts including for the demo2 commercial crew test flight in  the company said that lyons will focus on transitioning firefly from an rd environment to a production environment for its alpha small launch vehicle space utility vehicle tug and blue ghost lunar lander firefly is entering a pivotal and exciting phase of its growth lyons said in the statement im thrilled to take on the challenge of leading the efforts in scaling the companys infrastructure to support rapid growth high execution rate and deliver exceptional value and service to our customers firefly is also getting into the components business the company said it will offer the engines it developed for its alpha vehicle to other customers initial demand has been strong with external orders already exceeding the quantity of engines that firefly was building for use on its own launch vehicle alpha eric salwan chief revenue officer of firefly said in an aug  statement but did not disclose the number of engines sold or the customers for them those engines have yet to take flight on alpha or any other launch vehicle firefly shipped the first alpha rocket to vandenberg space force base earlier this year and performed pad testing but has not disclosed a date for its launch firefly spokesperson kim jennett said the company is not publicizing a launch date but that things are getting close at a july  teleconference by the future in space operations group salwan said the company was waiting on a single unspecified component for its flight termination system once we have that were going to roll into the launch campaign and hopefully well be launching here within the next couple of months
## 3618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          washington  the use of cubesats has grown dramatically in recent years but some are wondering if the form factor has reached the limits of its usefulness in a presentation at the 35th annual small satellite conference aug  siegfried janson a retired aerospace corporation engineer who is now a consultant reviewed the history of smallsat usage dividing the space age into three eras the early years when small satellites were often the only option a later era dominated by large satellites and a new space era that started in the late 1990s for nanosatellites a mass class that includes most cubesats the number of satellites launched in that new space era has grown from one in  to more than  per year in recent years for the nanosatellite world weve seen an almost exponential rise with a doubling time of about two and a half years he said the surge has been driven by commercial applications such as constellations developed by planet and spire however interest has grown in heavier smallsats to support efforts like broadband megaconstellations a chart of what janson calls supermicrosatellites weighing between  and  kilograms shows a sharp increase in the last two years primarily because of spacex starlink satellites the growth of heavier smallsats and new dedicated and rideshare launch options for them prompted a question during another session of the conference aug  are cubesats dead panelists argued that any rumor of the demise of cubesats is greatly exaggerated a number of the small rockets dont think they are because theyre designing specifically for cubesatscale launches of  to  kilograms said carlos niederstrasser of northrop grumman  who provided an updated assessment of the small launch vehicle industry at the conference  we might not see the crazy growth of cubesat numbers we have seen in the past  years he added with more growth among satellites weighing between  and  kilograms i think theres definitely still utility in that small form factor one of the developers of the original cubesat standard jordi puigsuari of california polytechnic state university in san luis obispo came to the defense of the cubesat as well a benefit of cubesats is the standardization in size that makes it easy to find launches for them he argued that really makes a difference because the launch provider doesnt have to analyze hardly anything he said its very easy for a launch vehicle to include cubesat accommodations that can be filled at relatively the last moment theres still an advantage to having this very standardized containerized system cubesats got their start in the early 2000s primarily as technology demonstrations and he said there continues to be demand for using cubesats for that purpose the thing that will never die is the tech demo a launch provider agreed when companies are just starting up and getting their feet wet with developing spacecraft theres nothing better than a cubesat said john fuller of virgin orbit whose launcherone vehicle has carried cubesats on its first two missions to orbit this year janson said the cubesat form factor and its ability to be containerized was critical to growing the overall smallsat field even if interest is growing in larger smallsats access to space was opened up to countries and to companies and now even to individuals he said for  years or so everything was in the box people wanted outofthebox thinking he said and ironically cubesats which was a box was the revolutionary concept
## 3659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      washington  spacex has quietly agreed to acquire swarm technologies a company that operates a smallsat constellation providing internetofthings services swarm revealed the acquisition in  a series of filings with the federal communications commission aug   where the company sought approval to transfer its existing satellite and ground station licenses to spacex the companies signed the merger deal july  according to the filings under which swarm would continue to operate as a wholly owned subsidiary of spacex the companies had not publicly disclosed the acquisition before the fcc filing neither spacex nor swarm responded to emails with questions about the deal the spacex subsidiary that is merging with swarm called swarm holdco was incorporated in delaware may  according to state records suggesting discussions between the two companies had been ongoing for months swarm operates a constellation of  smallsats each smaller than a singleunit cubesat to provide twoway communications at low data rates for markets such as agriculture energy and transportation the company argues it can provide services at a fraction of the cost of legacy satellite services in the fcc filing the companies say that the acquisition will give swarm resources to compete against several other companies that operate similar satellite systems swarms services will benefit from the better capitalization and access to resources available to spacex as well as the synergies associated with acquisition by a provider of satellite design manufacture and launch services it states a footnote references recent events to support that argument such as  orbcomms pending acquisition  by private equity firm gi partners  spires plans to go public  through a merger with a specialpurpose acquisition company  keplers  million series b  funding round and  astrocasts statement that it is considering going public  swarms last announced funding round was in early  when  it raised  million in a series a round  the company though has said that funding was more than sufficient to deploy its constellation and begin services were at a point now where were able to put up our entire network of  satellites for far less than our series a sara spangelo cofounder and chief executive of swarm said in a webinar hosted by caltechs keck institute for space studies in march she added the company had at the time about  employees and raised a total of  million the benefits to spacex of acquiring swarm are less clear swarms satellites operate in a different frequency band vhf than spacexs starlink broadband satellites the incremental revenue that swarm will provide spacex is likely to be minuscule compared to the fees the company gets from starlink beta testers let alone its space transportation services the filing suggests spacex is primarily interested in swarms technology and staff spacex will similarly benefit from access to the intellectual property and expertise developed by the swarm team as well as from adding this resourceful and effective team to spacex the document states its unclear what the acquisition will mean for swarms longterm plans at the march webinar spangelo was asked where she saw the company in  years i think we will have launched at least one if not two different constellations she responded a natural progression would be bigger satellites  or maybe smaller  that can do way more data and connect more types of devices we definitely have aspirations of additional kinds of demand curves of things that we can do in the future she added youll have to stay tuned
## 3675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 san francisco  planet announced a multiyear agreement aug  that designates spacex as the earthobservation companys gotolaunch provider through the end of  planet did not reveal the number of satellites or launches covered by the agreement in the first launch covered by the deal planet is preparing to send  superdoves into orbit in december on the spacex falcon  transporter3 rideshare mission im excited to continue our partnership with spacex planet ceo will marshall said in a statement weve had seven launches to date but more than that weve pioneered together rapid planning manufacturing and launch of satellites that only planet and spacex could together have achieved planet launched  superdoves on the spacex transporter1 mission in january expanding its earth observation fleet to more than  satellites superdoves capture imagery with a resolution of about  meters per pixel in eight spectral bands spacex also  transported a total of six planet skysats  to orbit in june  and august  alongside spacex starlink broadband satellites skysats offer 50centimeter resolution in a news release announcing the agreement with spacex planet attributes skyrocketing demand for flexible highresolution imagery of the earth to companies seeking daily global insights for their industries planet is known for  continually updating satellite hardware and software  with the  superdoves set to fly in december planet is continuing to innovate by rapidly building satellites with the newest advances in imagery technology according to the news release spacex rideshare missions have proven to be extremely popular the  transporter1 mission flew  satellites  and the  transporter2 launch june   lofted another  spacexs rideshare program has allowed companies like planet to meet their ambitious targets for product launch according to the planet news release tom ochinero spacex vice president of commercial sales said in a statement were honored that planet has chosen spacex as its goto launch provider as the demand for planets services continues to soar spacexs regular launch cadence will allow planets customers to use its services with as little downtime after manufacturing as possible while spacex is becoming planets gotolaunch provider planet will continue to sign deals with other launch providers planet maintains a diversified launch manifest to mitigate risks inherent to the launch industry the news release said booking rides on many different rockets  has been a key element of planets success  in building the worlds largest earthobservation constellation planet lost  satellites in the  failure of an orbital sciences antares rocket eight more in the  breakup of a spacex falcon  and another five in july  when a  rocket lab electron failed to reach orbit  by engaging with a diversified manifest planet can find launches to the right orbit in the right time frame for each evolving satellite project the news release said
## 18692 in an era where technology is advancing at an extraordinary rate satellite operations in low earth orbit leo continue to experience rapid change like never before in the first half of  over  primarily leo satellites have launched federal communications commission fcc filings and market research indicates that thousands of leo satellites could be on orbit by  this exponential growth is dominated by a few large constellations with a handful of operators flying more than  satellite constellations in addition the global market is evolving as multiple companies work toward smaller constellations of five to  satellites with different needs at that scale it is in this context that  ai solutions  sat down with andrew werner director of space products at the company what role does ai solutions play in the modernization of satellite operations ai solutions  is an engineering services company specializing in satellite flight dynamics also known as orbital mechanics or astrodynamics  determining where your satellite has been knowing where it will be considering the various forces acting on it and planning maneuvers to meet the satellites objectives  all while maintaining proper orientation meeting communication and sensor coverage needs and avoiding debris and other satellites in  we celebrate  years of providing flight dynamics expertise and software to civil military commercial international and academic customers across mission planning launch early mission onorbit and disposal phases  ai solutions  has enabled the success of hundreds of satellites including the international space station iss gps landsat and the geostationary operational environmental satellite goes we also develop  freeflyer  the most powerful flexible and operationally verified and validated flight dynamics cots commercial offtheshelf software on the market freeflyer allows engineers to customize space mission design analysis and operations functions to meet their specific needs in addition to our trusted and proven space software customers can access our worldclass freeflyer engineering support team all with flexible licensing resulting in the best value on the market were seeing more and more leo constellations how can cots providers meet the increasing demands of constellations when operating a satellite flight dynamics tasks need to be performed at certain intervals such as planning an upcoming maneuver or determining possible contact times with an antenna on the earth it is common for freeflyerbased operations to automate these tasks and make the resulting data products available with multiple satellites the processing time of these operations increases in some cases exponentially for tasks such as intraconstellation collision avoidance ca ground systems need to be able to scale and freeflyer is architected to accommodate that freeflyer can distribute an entire constellations flight dynamics tasks across virtual machines or cloud instances generating products in parallel to minimize overall run time our clients with current or planned constellation operations tell us freeflyer provides what theyre looking for  flexible interfacing and scalability to meet their flight dynamics needs today and in the future constellation providers often plan to start with a few prototype spacecraft and grow to  or more satellites in these cases automation and flexibility must go hand and hand many providers want a handson operator for the first few satellites to gain experience before transitioning routine processes to automation we have also found that constellation providers need the flexibility to modify automation workflows over time rerun specific tasks if needed and run across different hardware configurations  such as single machine clientserver architecture or at scale across virtual machines or cloud instances   ai solutions  developed our meridian software which is powered by freeflyer with these needs in mind it meets most standard leo or geo flight dynamics requirements with minimal configuration automated workflows generate routine products maneuver plans contact times ephemerides etc operators can view automated tasking and manually intervene if necessary enabling them to manage multiple spacecraft from a single modern interface  ai solutions  regularly develops new versions of our meridian and freeflyer products with increased functionality how does your software scale to support operations of large constellations with thousands or tens of thousands of satellites freeflyers flexibility and power makes it uniquely suited to support analysis and operations for large constellations in which automation and processing speed is of increased importance it is not enough to automate routine operations as even infrequent events at this scale can result in a significant workforce if they require operator intervention for example an  ai solutions  engineer uses freeflyer to analyze ascent and onorbit operations of the starlink constellation automatically orbit data is ingested for each satellite as it becomes available running a series of analyses that reveal when a spacecraft deviates from its expected behavior alerting the engineer by only analyzing anomalous behavior we minimize staffing allowing us to focus on potential risks to other satellites large constellations have a dozen or more satellites spread out across a single orbit plane these orbit planes are natural grouping mechanisms for performing analysis and operations at scale a single cloud instance of freeflyer can quickly perform the necessary flight dynamics tasks such as planning maneuvers to maintain proper satellite spacing within the plane conjunctions are possible where orbit planes overlap and freeflyer can assess the risk at these crossings with realistic uncertainty in position and velocity different avoidance strategies can be rapidly devised and tested to minimize and effectively plan for this risk click here to watch the cloud architecture for constellation operations video  where stephan novak a freeflyer developer demonstrates how freeflyer can be included in a cloud architecture ca flight dynamics workflow another type of constellation on the rise is a cluster or formation  a small number of cooperative satellites in close proximity what unique challenges are involved with clusters the geometric relationship between cluster members  their spacing interactions and overall cluster shape  is extremely complex and must be continually evaluated and predicted in operations our efforts with nasas recordsetting magnetospheric multiscale formation found traditional ca methods were not valid for closeflying lowrelative velocity missions we developed new methodologies using graphics processing unit technology to obtain trusted ca results on operational timelines building on this we developed a cluster quality factor metric to statistically evaluate how mission performance will degrade or improve over time maneuvering satellites within the cluster as needed there are concerns about how these large constellations will impact space safety how does ai solutions envision the future of space traffic management ai solutions  is committed to making space safe freeflyer is currently used for ca on dozens of missions most notably the iss while freeflyer could perform ca for all space traffic management as it moves from  spcs to a civil agency  ai solutions  supports the open architecture data repository oadr concept an open marketplace with multiple competing solutions freeflyers api enables cloudbased autonomous scripts to accomplish any portion of the ca analysis pipeline depending on customer needs and choices additionally  ai solutions  has  developed a tool called obssim  that provides simulated physicsbased space surveillance observations to support timely efficient and realistic testing training and realtime space exercises obssim uses freeflyer to provide simulated observations in the same formats as live data allowing trainers to emulate an adverse condition such as a breakup or collision that may be infeasible to execute for an exercise or other training scenario obssim and tools like it can be the foundation for simulations that help operators train on the oadr environment
##               author
## 3526      Jeff Foust
## 3532   Jason Rainbow
## 3533    Sandra Erwin
## 3538   Jason Rainbow
## 3544      Jeff Foust
## 3589   Jason Rainbow
## 3600      Jeff Foust
## 3618      Jeff Foust
## 3659      Jeff Foust
## 3675    Debra Werner
## 18692 a.i. solutions

Para mayor detalle vamos a realizar bigramas y trigramas.

# Hacemos un bigrama
corpus_limpio2 <- tokens_ngrams(corpus_limpio, 
                              n = 2)
# Generamos la matriz
myStemMat <- dfm(corpus_limpio2)

# Sacamos hasta 60 top words
print(topfeatures(myStemMat, n = min(60, nfeat(myStemMat))))
##              space_force                air_force              earth_orbit 
##                      177                      105                      102 
##              blue_origin               rocket_lab        national_security 
##                       84                       83                       81 
##                low_earth            space_station           launch_vehicle 
##                       79                       66                       65 
##         colorado_springs            space_systems              outer_space 
##                       60                       50                       49 
##            announced_aug          space_symposium             space_agency 
##                       48                       47                       44 
##          chief_executive           space_industry            space_command 
##                       43                       42                       37 
##          launch_services           vice_president      international_space 
##                       35                       35                       35 
##             virgin_orbit         commercial_space         northrop_grumman 
##                       34                       33                       32 
##           told_spacenews             space_launch           security_space 
##                       31                       31                       29 
##           raised_million          missile_defense        space_development 
##                       29                       28                       27 
##          lockheed_martin          virgin_galactic         scheduled_launch 
##                       27                       26                       26 
##            liquid_oxygen               force_base       defense_department 
##                       25                       25                       25 
##          launch_vehicles         space_operations          systems_command 
##                       25                       24                       23 
##              force_space            space_missile          space_companies 
##                       23                       22                       22 
##       development_agency        navigation_timing                tampa_fla 
##                       21                       21                       21 
##               36th_space              south_korea     satellite_navigation 
##                       20                       20                       20 
##      satellite_operators              upper_stage   positioning_navigation 
##                       20                       20                       20 
##             supply_chain        human_spaceflight        propulsion_system 
##                       19                       19                       19 
##         space_activities               pm_eastern          issue_spacenews 
##                       18                       17                       17 
##       spacenews_magazine constellation_satellites            space_economy 
##                       17                       17                       17
# Creamos semilla para crear una imagen 
set.seed(100)

png(filename="bigrama_agosto.png",
    width=3000,
    height=3000)

# Generamos el WordCloud
textplot_wordcloud(myStemMat, 
                   min_count = 1,           # Cambiado a 1 para incluir todas las palabras
                   random_order = FALSE,
                   rotation = 0,
                   color = RColorBrewer::brewer.pal(8,"Dark2"))

# Cerramos la conexion para que se cree la imagen png
dev.off()
## png 
##   2

Los bigramas más frecuentes de agosto de 2021 nos ofrecen una visión interesante de los temas destacados durante ese período:

  1. Space Force: Este término está relacionado con la rama espacial de las fuerzas armadas de los Estados Unidos y su actividad en el espacio.

  2. Air Force: Hace referencia a la Fuerza Aérea y su participación en operaciones relacionadas con el espacio.

  3. Earth Orbit: Describe la órbita terrestre, posiblemente relacionada con misiones espaciales, satélites o actividades en la órbita baja de la Tierra.

  4. Blue Origin: Esta empresa aeroespacial fundada por Jeff Bezos ha estado en el centro de la atención por su participación en lanzamientos y desarrollo de tecnología espacial.

  5. Rocket Lab: Otra empresa de lanzamiento espacial que ha estado activa en el desarrollo de cohetes y lanzamientos de satélites.

  6. National Security: Relacionado con temas de seguridad nacional en el ámbito espacial.

  7. Low Earth: Se refiere a la órbita baja de la Tierra, que es una región importante para muchas misiones espaciales.

  8. Space Station: La Estación Espacial Internacional (ISS) es una de las principales referencias en este término.

  9. Launch Vehicle: Se refiere a los vehículos de lanzamiento utilizados para enviar cargas útiles al espacio.

  10. Colorado Springs: Posiblemente relacionado con eventos o instalaciones espaciales ubicadas en esta ciudad de Colorado.

Al considerar tanto las palabras individuales más frecuentes como los bigramas más comunes de agosto de 2021, podemos obtener una imagen más completa de los temas y eventos destacados durante ese período.

  1. Space Launch y Satellites: La frecuencia de estos términos indica un enfoque significativo en los lanzamientos espaciales y la actividad relacionada con satélites durante ese mes. Y hemos podido ver algunos de estos lanzamientos en el apartado anterior.

  2. Company Satellite y Commercial Million: Estos bigramas sugieren un interés particular en las empresas privadas que operan satélites y realizan actividades comerciales en el espacio, posiblemente relacionadas con inversiones millonarias en el sector espacial comercial. Uno de estos es Space, Blue Origin o Rocket Lab.

  3. Earth Orbit y Low Earth: La presencia de estos bigramas indica un enfoque en las misiones y operaciones espaciales en órbita terrestre baja, que es una región crítica para muchas actividades espaciales.

  4. Spacecraft Services y National Companies: Estos bigramas indican un enfoque en los servicios relacionados con naves espaciales y la participación de empresas nacionales en el sector espacial como la NASA.

# Hacemos un trigrama
corpus_limpio2 <- tokens_ngrams(corpus_limpio, 
                              n = 3)
# Generamos la matriz
myStemMat <- dfm(corpus_limpio2)

# Sacamos hasta 60 top words
print(topfeatures(myStemMat, n = min(60, nfeat(myStemMat))))
##                    low_earth_orbit        international_space_station 
##                                 77                                 28 
##            national_security_space              space_systems_command 
##                                 23                                 23 
##               36th_space_symposium           space_development_agency 
##                                 20                                 19 
##      positioning_navigation_timing           issue_spacenews_magazine 
##                                 19                                 17 
##                   space_force_base                    air_force_space 
##                                 15                                 14 
##               satellites_low_earth        article_originally_appeared 
##                                 14                                 14 
##               human_landing_system             united_launch_alliance 
##                                 14                                 13 
##              space_missile_systems              european_space_agency 
##                                 13                                 13 
##     national_reconnaissance_office             missile_systems_center 
##                                 12                                 12 
##            nasa_administrator_bill          administrator_bill_nelson 
##                                 11                                 11 
##              security_space_launch                 air_force_research 
##                                 11                                 11 
##                 medium_earth_orbit           space_traffic_management 
##                                 11                                 10 
##             chief_space_operations                     air_force_base 
##                                 10                                 10 
##               rocket_lab_announced           chief_technology_officer 
##                                 10                                 10 
##   government_accountability_office  federal_communications_commission 
##                                 10                                  9 
##              company_announced_aug               department_air_force 
##                                  9                                  9 
##        global_navigation_satellite                rocket_lab_electron 
##                                  9                                  9 
##              space_missile_defense            chief_operating_officer 
##                                  9                                  8 
##                space_symposium_aug                  force_space_force 
##                                  8                                  8 
##        satellite_navigation_system             august_issue_spacenews 
##                                  8                                  8 
##           acquisition_company_spac specialpurpose_acquisition_company 
##                                  8                                  8 
##          force_research_laboratory             missile_defense_agency 
##                                  8                                  8 
##                secretary_air_force           million_canadian_dollars 
##                                  8                                  8 
##               court_federal_claims                  space_force_space 
##                                  8                                  7 
##                  seoul_south_korea  merger_specialpurpose_acquisition 
##                                  7                                  7 
##         originally_appeared_august              appeared_august_issue 
##                                  7                                  7 
##              raised_million_series          earth_orbit_constellation 
##                                  7                                  7 
##                    uk_space_agency           originally_appeared_july 
##                                  7                                  7 
##                appeared_july_issue               july_issue_spacenews 
##                                  7                                  7 
##               blue_origin_dynetics                  blue_origin_filed 
##                                  7                                  7
# Creamos semilla para crear una imagen 
set.seed(100)

png(filename="trigrama_agosto.png",
    width=3000,
    height=3000)

# Generamos el WordCloud
textplot_wordcloud(myStemMat, 
                   min_count = 1,           # Cambiado a 1 para incluir todas las palabras
                   random_order = FALSE,
                   rotation = 0,
                   color = RColorBrewer::brewer.pal(8,"Dark2"))

# Cerramos la conexion para que se cree la imagen png
dev.off()
## png 
##   2

Al analizar los trigramas más frecuentes de agosto de 2021, podemos obtener información adicional sobre los temas y eventos relevantes en el ámbito espacial durante ese período:

  1. Low Earth Orbit (Órbita Terrestre Baja): La aparición frecuente de este trígrama sugiere un enfoque significativo en las operaciones y actividades en órbita terrestre baja, una región crucial para muchas misiones espaciales.

  2. International Space Station (Estación Espacial Internacional): Este trígrama indica un interés continuo en la ISS y las actividades asociadas con la estación espacial.

  3. National Security Space (Espacio de Seguridad Nacional): La presencia de este trígrama sugiere un enfoque en las actividades espaciales relacionadas con la seguridad nacional, como la vigilancia y la defensa.

  4. Space Systems Command (Comando de Sistemas Espaciales): Este trígrama indica un enfoque en las operaciones y el liderazgo en el ámbito de los sistemas espaciales.

  5. 36th Space Symposium (36º Simposio Espacial): La aparición de este trígrama sugiere que este evento específico fue destacado durante agosto de 2021, posiblemente como un lugar importante para discutir y presentar avances en tecnología espacial.

  6. Space Development Agency (Agencia de Desarrollo Espacial): Este trígrama indica un enfoque en las actividades de desarrollo espacial, posiblemente relacionadas con la planificación y ejecución de nuevas misiones y tecnologías.

  7. Human Landing System (Sistema de Aterrizaje Humano): La presencia de este trígrama sugiere un interés en los sistemas y tecnologías relacionados con los aterrizajes humanos en cuerpos celestes, como la Luna o Marte.

  8. Rocket Lab Electron: Este trígrama indica un enfoque en los lanzamientos y actividades asociadas con los cohetes Rocket Lab Electron.

  9. Space Traffic Management (Gestión del Tráfico Espacial): Este trígrama sugiere un interés en las actividades relacionadas con la regulación y gestión del tráfico en el espacio, posiblemente debido al aumento de la cantidad de satélites y naves espaciales en órbita.

  10. Satellite Navigation System (Sistema de Navegación por Satélite): La presencia de este trígrama indica un enfoque en los sistemas de navegación satelital, como GPS y otros sistemas similares.

Ahora que tenemos los trigramas podemos ver con más detalle hacia donde se enfocan las noticias. Con el WordCloud donde sólo se usaba una palabra podiamos hacernos una idea genérica de las noticias y a partir de ellas investigar y encontrar noticias acerca de ellas. En el WordCloud con los bigramas podiamos confirmar lo buscado en la primera sección asi como saber con un poco más de detalle el tipo de enfoque, mientras que ya con los trigramas, podemos hacernos una idea mucho más concreta ade los temas de los que se habla sin necesidad de buscar noticias específicas.

Palabras más frecuentes

Ahora vamos a analizar las palabras más frecuentes, pero centrándonos en el autor. Antes hemos analizado qué palabras se usaban con más frecuencia duranate agosto de 2021.

Calculamos la frecuecia de cada palabra por autor, las palabras totales por autor y en space_words unimos space_words con total_words utilizando author como clave de unión.

# Tokenización y conteo de palabras
space_words <- datos_agosto_2021_limpios %>%
  unnest_tokens(word, content) %>%
  count(author, word, sort = TRUE) 

# Cálculo del total de palabras por autor
total_words <- space_words %>% 
  group_by(author) %>% 
  summarize(total = sum(n))

# Unión de las tablas
space_words <- left_join(space_words, total_words)

Mostramos el gráfico donde se muestra la frecuencia relativa de cada palabra por autor

# Generar el gráfico
gg <- ggplot(space_words, 
       aes(n/total, fill = author)) +
  geom_histogram(show.legend = FALSE) +
  xlim(NA, 0.0009) +
  facet_wrap(~author, 
             ncol = 2, 
             scales = "free_y")

# Guardar el gráfico 
ggsave("histograma_autores.png", gg, width = 10, height = 8, units = "in")

TF-IDF

Podemos calcular el TF-IDF (Frecuencia de Término - Frecuencia Inversa de Documento) para space_words. Esto es una medida estadítica para evaluar la importancia de una palabra en un documento, en relación con una colección de documentos más grande.

Es decir, para nuestro caso destacaremos las palabras más importantes para cada autor y no tienen porqué ser las palabras más importantes de todo el conjunto de datos.

# Calculamos el TF-IDF
space_tf_idf <- space_words %>%
  bind_tf_idf(word, author, n)
# Selección de las palabras con mayor TF-IDF y creación del gráfico
p <- space_tf_idf %>%
  group_by(author) %>%
  slice_max(tf_idf, 
            n = 15) %>%
  ungroup() %>%
  ggplot(aes(tf_idf, fct_reorder(word, tf_idf), 
             fill = author)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~author, ncol = 2, scales = "free") +
  labs(x = "tf-idf", y = NULL)

# Guardar el gráfico
ggsave("space_tf_idf.png", plot = p, width = 70, height = 50, units = "in", limitsize = FALSE)

  1. Jeff Foust:
    • Tiene un enfoque en noticias relacionadas con la industria espacial, especialmente en anuncios de empresas y agencias espaciales.
    • Menciona a menudo términos como “rocket”, “nasa”, “lunar”, y “vehicle”, indicando un interés en misiones y tecnologías relacionadas con la exploración espacial.
  2. Sandra Erwin:
    • Se centra en noticias sobre la fuerza aérea (air force) y temas militares relacionados con el espacio.
    • Destaca términos como “force”, “nssl” (National Security Space Launch), y “ula” (United Launch Alliance), indicando un interés en lanzamientos militares y temas de seguridad nacional.
  3. Jason Rainbow:
    • Cubre noticias sobre empresas y constelaciones satelitales, con un enfoque en compañías como AWS, Intelsat, y Eutelsat.
    • Utiliza términos como “satellites”, “ground”, y “operator”, mostrando interés en la infraestructura satelital y los servicios de telecomunicaciones.
  4. Debra Werner:
    • Enfoca sus noticias en tecnologías de propulsión y sistemas de propulsión.
    • Destaca términos como “propulsion”, “thrusters”, y “thruster”, lo que indica un interés en la innovación en propulsión espacial.
  5. Andrew Jones:
    • Se centra en noticias relacionadas con China y su programa espacial.
    • Utiliza términos como “chinese”, “rocket”, “shenzhou12”, y “china”, mostrando un interés en las actividades espaciales de China.
  6. Park Si-soo:
    • Cubre principalmente noticias sobre Corea del Sur y su programa espacial.
    • Utiliza términos como “korea”, “south”, “seoul”, y “minister”, indicando un enfoque en la política espacial y la cooperación internacional.
  7. Michael J. Listner:
    • Enfoca sus noticias en asuntos legales y políticos en el espacio.
    • Menciona términos como “treaty”, “law”, “governance”, y “legal”, lo que indica un interés en la regulación y la gobernanza espacial.
  8. a.i. solutions:
    • Se enfoca en tecnologías y soluciones de automatización en el espacio.
    • Utiliza términos como “ai”, “freeflyer”, y “automation”, mostrando interés en el desarrollo de sistemas autónomos y de inteligencia artificial para misiones espaciales.
  9. Grant Anderson:
    • Centra sus noticias en lecciones aprendidas de programas espaciales pasados, especialmente del programa del transbordador espacial.
    • Utiliza términos como “shuttle”, “atlantis”, “columbia”, y “challenger”, mostrando un interés en la historia y la seguridad de los vuelos espaciales tripulados.
  10. Austin Link:
    • Cubre noticias sobre la gestión de desechos espaciales y la mitigación de la basura espacial.
    • Utiliza términos como “disposal”, “tug”, “debris”, y “removal”, mostrando un interés en la limpieza y la gestión de la órbita terrestre.
  11. Leo Mondale:
    • Se enfoca en temas relacionados con el impacto ambiental de la industria espacial.
    • Utiliza términos como “carbon”, “climate”, “environmental”, y “footprint”, mostrando interés en la sostenibilidad y el impacto ambiental de las actividades espaciales.
  12. Tony Quine:
    • Cubre principalmente noticias sobre la industria cinematográfica y el entretenimiento relacionado con el espacio.
    • Menciona términos como “cosmonaut”, “cinematography”, y “script”, mostrando un enfoque en la producción de películas y documentales espaciales.
  13. Tony Samp:
    • Se enfoca en la innovación tecnológica y la adopción de nuevas capacidades en la industria espacial.
    • Utiliza términos como “responsive”, “capabilities”, y “automation”, mostrando un interés en la mejora de la eficiencia y la velocidad en el desarrollo de sistemas espaciales.
  14. Anusuya Datta:
    • Cubre noticias sobre sistemas de navegación y posicionamiento global.
    • Utiliza términos como “gps”, “gnss”, “navigation”, y “positioning”, mostrando interés en la tecnología de posicionamiento global y sus aplicaciones.
  15. Charles Beames:
    • Enfoca sus noticias en estrategias de adquisición y compras en el ámbito espacial.
    • Utiliza términos como “pentagon”, “contracting”, y “buying”, mostrando un interés en los procesos de adquisición y la gestión de contratos espaciales.
  16. Patty Stoll:
    • Se centra en noticias sobre trajes espaciales y actividades extravehiculares (EVA).
    • Utiliza términos como “spacesuit”, “eva”, y “extravehicular”, mostrando interés en la tecnología y las operaciones de trajes espaciales.
  17. Michael Lencioni:
    • Cubre noticias sobre vuelos espaciales tripulados y la industria de turismo espacial.
    • Menciona términos como “virgin”, “galactic”, y “crewed”, mostrando un enfoque en las empresas de turismo espacial y los vuelos tripulados.
  18. Christopher Stone:
    • Se enfoca en la detección y defensa contra amenazas espaciales.
    • Utiliza términos como “opir”, “sbirs”, “missiles”, y “threats”, mostrando interés en la vigilancia y la protección contra misiles y amenazas espaciales.
  19. SpaceNews Editor:
    • Cubre una amplia variedad de temas relacionados con la industria espacial y la tecnología.
    • Utiliza términos como “edition”, “digital”, y “editorial”, mostrando un enfoque en la producción y distribución de contenido espacial.

Ley de Zipf

Podemos realizar un análisis de la distribución de frecuencia de los términos con la ley de Zipf.

Esta ley es un fénomeno empírico que describe la distribución de la frecuencia de las palabras en un texto, donde la frecuencia de cualquier palabra es inversamente proporcional a su rango de frecuencia. En otras palabras, la palabra más frecuente en un texto ocurre aproximadamente el doble de veces que la segunda palabra más frecuente, tres veces más que la tercera, y así sucesivamente.

Para ello, agrupamos por autor y calculamos la frecuencia relativa de cada palabra en relación con el total de palabras.

freq_by_rank <- space_words %>% 
  group_by(author) %>% 
  mutate(rank = row_number(), 
         term_frequency = n/total) %>%
  ungroup()

Ahora calculamos la regresión lineal de logaritmo de la frecuencia relativa en funcion del logaritmo del rango para cada autor y generamos el gráfico

# Ajustamos un modelo de regresión lineal logarítmica para los datos de frecuencia y rango
zipf <- lm(log10(term_frequency) ~ log10(rank), 
   data = freq_by_rank)

# Mostramos un resumen del modelo lineal
summary(zipf)
## 
## Call:
## lm(formula = log10(term_frequency) ~ log10(rank), data = freq_by_rank)
## 
## Residuals:
##      Min       1Q   Median       3Q      Max 
## -0.84317 -0.09751 -0.02255  0.08111  0.56634 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept) -0.486549   0.005464  -89.05   <2e-16 ***
## log10(rank) -1.111144   0.001877 -592.01   <2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.1644 on 21965 degrees of freedom
## Multiple R-squared:  0.941,  Adjusted R-squared:  0.941 
## F-statistic: 3.505e+05 on 1 and 21965 DF,  p-value: < 2.2e-16
# Creamos el gráfico
freq_by_rank %>% 
  ggplot(aes(rank, 
             term_frequency, 
             color = author)) + 
  geom_abline(intercept = 0.951902, 
              slope = -1.554990, 
              color = "gray50", linetype = 2) +
  geom_line(linewidth = 1.1, 
            alpha = 0.8) + 
  scale_x_log10() +
  scale_y_log10() +
  labs(color = "Autor") + 
  theme(legend.position = "right")

Topic models

Los modelos de tópicos (topic models) son útiles para identificar temas principales o tópicos en un conjunto de documentos textuales, lo que permite explorar y comprender mejor el contenido de los documentos.

Asi que, aquí nuestro objetivo es ver cuales son los temas principales que se tratan en la revista SpaceNews.

# Creamos un corpus a partir de los datos
corpus <- corpus(datos_space_limpios$content, docnames = datos_space_limpios$doc_id)

# Creamos tokens
palabras <- tokens(corpus,
                   remove_punct=TRUE,
                   remove_symbols=TRUE,
                   remove_separators=TRUE,
                   remove_url=TRUE)

# Eliminamos stopwords
palabras_filtradas <- tokens_select(palabras,
                                    pattern = palabras_a_eliminar,
                                    selection = "remove")

# Convertimos a matriz término-documento
matriz <- dfm(palabras_filtradas)

# Creamos el modelo de tópicos (LDA)
num_topics <- 6  # Definimos el número de tópicos
set.seed(100)
lda_model <- LDA(convert(matriz, to = "topicmodels"), k = num_topics)

# Mostramos los términos más relevantes por cada tópico
terms(lda_model, 10)
##       Topic 1      Topic 2          Topic 3      Topic 4    Topic 5     
##  [1,] "nasa"       "satellite"      "force"      "launch"   "space"     
##  [2,] "mission"    "satellites"     "space"      "rocket"   "commercial"
##  [3,] "space"      "company"        "air"        "company"  "u.s"       
##  [4,] "nasa’s"     "million"        "satellites" "space"    "industry"  
##  [5,] "spacecraft" "launch"         "defense"    "spacex"   "companies" 
##  [6,] "science"    "services"       "u.s"        "vehicle"  "national"  
##  [7,] "program"    "customers"      "satellite"  "flight"   "government"
##  [8,] "station"    "communications" "systems"    "test"     "it’s"      
##  [9,] "mars"       "orbit"          "military"   "launches" "technology"
## [10,] "missions"   "business"       "program"    "mission"  "policy"    
##       Topic 6     
##  [1,] "satellite" 
##  [2,] "satellites"
##  [3,] "space"     
##  [4,] "european"  
##  [5,] "esa"       
##  [6,] "million"   
##  [7,] "data"      
##  [8,] "ariane"    
##  [9,] "launch"    
## [10,] "agency"
# Guardamos el modelo de tópicos
save(lda_model, file = "topic_model_datos_space.rda")

Basándonos en los resultados de los topic models de datos_space_limpios, podemos sacar varias conclusiones:

  1. Diversidad de temas:
    • Los cinco temas identificados abordan diferentes aspectos del espacio y la exploración espacial.
    • El Tema 1 está relacionado con la NASA y misiones espaciales, con términos como “nasa”, “mission” y “science”.
    • El Tema 2 parece centrarse en los lanzamientos, con términos como “launch”, “rocket” y “company”.
    • El Tema 3 está más vinculado a temas relacionados con la fuerza, posiblemente en un contexto militar, con términos como “force”, “air” y “defense”.
    • El Tema 4 parece estar asociado con tecnología espacial y satélites, con términos como “satellites”, “satellite” y “data”.
    • El Tema 5 incluye términos más generales relacionados con empresas y servicios, como “company”, “million” y “services”.
  2. Frecuencia de términos:
    • “Space” es un término común en tres de los cinco temas, lo que sugiere que es un tema central en la mayoría de los artículos.
    • “Nasa” y “mission” también son términos frecuentes, lo que indica un enfoque significativo en las actividades y misiones de la NASA.
    • Términos como “launch”, “satellites” y “satellite” muestran un énfasis en los lanzamientos y la tecnología satelital.
  3. Diferenciación de temas:
    • Los temas 1, 2 y 3 están más relacionados con la exploración y actividades espaciales, mientras que los temas 4 y 5 parecen abordar aspectos más técnicos y empresariales.

WordCloud de los topic models

# Obtener los términos más relevantes por cada tópico
terms_per_topic <- terms(lda_model, 10)

kk <- lda_model@beta
class(kk)
## [1] "matrix" "array"
# Dimensiones de la matriz beta del modelo LDA
dim_kk <- dim(lda_model@beta)

# Asignar nombres a las columnas de kk con los términos
colnames(kk) <- lda_model@terms

#Tenemos 5 wordclouds
kk[1:6, 1:50]
##           paris    recent   funding      round    growing     demand
## [1,] -11.214802 -7.601160 -5.789330  -8.885248 -10.101863 -11.451280
## [2,]  -6.727301 -7.099304 -7.661123  -7.444569  -7.306958  -6.317947
## [3,] -27.024289 -7.388641 -6.392342 -10.987592  -8.200474  -8.073005
## [4,]  -9.868088 -7.311834 -7.246517  -7.218111  -8.657530  -7.867053
## [5,] -10.847893 -6.942057 -6.833475  -8.400178  -6.763382  -7.742006
## [6,]  -6.382639 -7.379598 -6.314874  -7.765570  -8.541320  -8.252228
##      radio-frequency geolocation capabilities    hawkeye        360     chief
## [1,]      -24.765064   -75.27385    -7.866857 -68.217652 -11.700127 -7.733416
## [2,]       -9.735610   -11.47940    -8.628619 -12.615533  -9.634965 -6.076744
## [3,]       -9.116934   -10.70943    -5.713186  -8.021698  -8.121383 -7.310857
## [4,]      -11.153505   -26.59136    -8.134954 -11.176960 -10.829102 -6.156477
## [5,]      -11.734323   -12.59426    -6.071153 -10.839196 -11.851603 -6.439708
## [6,]      -11.376624   -17.28035   -10.722904 -23.774010 -11.828829 -6.645538
##      executive    company   reached inflection      path profitability
## [1,] -8.390496 -11.767542 -9.086241  -18.76156 -8.004497    -32.503951
## [2,] -6.376457  -4.711725 -8.498319  -11.25717 -9.464793     -8.921590
## [3,] -8.259207  -6.676249 -9.573260  -17.30599 -9.112590    -21.438117
## [4,] -6.283391  -4.342169 -7.990795  -12.17972 -8.948407    -11.527273
## [5,] -6.623613  -6.761082 -9.118065  -10.06107 -7.918838    -12.689640
## [6,] -6.742627  -5.659662 -8.645372  -12.38375 -9.512503     -9.055154
##      potentially     public announced      july        13    raised         58
## [1,]   -7.988380  -8.157137 -6.490783 -6.491003 -7.755159 -8.573309 -11.239763
## [2,]   -8.781675  -8.180307 -6.338445 -6.948420 -7.788337 -7.337660 -10.123275
## [3,]   -8.656100 -15.806189 -6.659441 -7.351869 -8.208957 -9.939744 -10.664577
## [4,]   -8.859119  -7.977238 -5.848542 -6.520929 -7.508103 -7.513786  -9.976147
## [5,]   -8.097455  -6.233074 -7.332925 -8.425030 -8.672688 -7.854870 -18.345992
## [6,]  -10.249986  -7.493890 -6.687224 -6.780587 -7.760388 -7.999277 -10.263710
##         million    series        d-1       led blackrock   support development
## [1,]  -5.525159 -7.588951 -296.65805 -7.472705 -84.70154 -6.281025   -5.867585
## [2,]  -4.915323 -7.903759 -135.68123 -8.225059 -11.13998 -7.243697   -7.582366
## [3,]  -5.443905 -8.161376  -13.02355 -8.116892 -13.64825 -6.284363   -5.692650
## [4,]  -6.100122 -6.736426  -49.78192 -8.031301 -12.25556 -6.876153   -5.790131
## [5,] -12.884776 -8.792360  -36.89022 -7.179590 -13.84137 -6.018653   -6.123527
## [6,]  -4.695213 -6.945588  -96.50580 -7.502796 -12.54278 -6.751018   -6.235347
##      satellites  analytics   products       368       date       john
## [1,] -20.904903 -50.758525 -14.231571 -12.11051  -6.919978  -7.665792
## [2,]  -3.963669 -10.902475  -7.808767 -14.46287  -7.825127  -9.369533
## [3,]  -4.298555  -8.735673  -8.405470 -13.31201  -7.987308  -7.028657
## [4,]  -6.342636 -38.661949 -10.008261 -32.70606  -6.739147  -8.713774
## [5,]  -6.954680  -7.877661  -7.291606 -23.10620 -10.299602  -7.800774
## [6,]  -4.359274  -8.170125  -7.553400 -24.26066  -7.712299 -15.426103
##         serafini interview     world satellite   business      week      sept
## [1,] -121.841158 -7.714785 -8.361732 -9.849964 -10.968062 -7.319817 -7.220561
## [2,]  -30.886667 -7.843403 -6.994969 -3.523465  -5.317437 -7.684890 -7.049451
## [3,]   -9.474416 -8.053727 -8.465364 -4.618356  -6.820825 -7.948204 -7.611933
## [4,]  -42.570718 -7.135399 -8.754058 -6.135726  -6.932310 -7.071682 -6.832939
## [5,]  -10.976216 -8.318402 -6.112499 -6.870678  -6.101291 -7.554466 -8.457449
## [6,]  -38.105932 -7.307863 -7.794264 -4.142053  -6.705935 -8.537000 -7.481463
##         private      raise  provided    execute    revenue
## [1,]  -8.082823  -9.481231 -7.229130  -9.787427 -26.320507
## [2,]  -8.541107  -7.678131 -7.980974 -10.668900  -5.625135
## [3,] -10.390227 -16.129223 -7.690239  -9.083236 -17.639388
## [4,]  -7.425196  -8.461749 -7.576353 -10.256287  -9.353322
## [5,]  -6.007512  -8.256393 -8.223105  -9.351356 -10.246548
## [6,]  -8.381494  -8.745121 -7.320021 -12.099183  -6.449531
# Definir el diseño de la matriz de gráficos
par(mfrow = c(3, 3))

png(file="wordcloudTopicModels.png",
    width=3600,
    height=3000,
    res = 300,
    bg = "black")

par(mfrow=c(3, 3))

for (k in 1:length(kk[,1])) {
  
  topic1 <- kk[k,]
  
  v <- topic1
  
  d <- data.frame(word = names(v),rank= rank(v))
  
  d <- d[order(-d$rank),]
  
  d$freq <- d$rank - max(d$rank) + 100
  
  pal2 <- brewer.pal(11,"Spectral")
  wordcloud(d$word,
            d$freq, 
            scale = c(1.2, 0.05),
            max.words = 200, 
            random.order = FALSE, 
            rot.per = 0, 
            colors = pal2,
            random.clor = TRUE)
  title(main = paste(k),
        font = 10,
        col.main = "yellow")
}


dev.off() 
## png 
##   2

Análisis de sentimientos

Antes de aplicar analisis de semntimientos usando la libreria tidytext vamos a seleccionar e informarnos acerca de la carrera de dos de los escritores como muestra para poder compararlos y poder analizar las diferencias en cuanto a forma de escritura, pensamiento o ideales entre ambos autores.

En este caso hemos seleccionado a Jeff Foust debido a que era el autor con más apariciones en el DataSet y a Sandra Erwin ya que además de ser la tercer autora con más publicaciones sobre el campo del Cosmos y las nuevas tecnologías que van apareciendo, nos intrigamos por saber si habia alguna diferencia debido a su género.

RESUMEN DEL AUTOR JEFF FOUST:

Jeff Foust es otro periodista destacado en el ámbito de la exploración espacial y la industria aeroespacial. Algunos de los temas que suele tratar incluyen:

  • Exploración Espacial: Foust cubre una amplia gama de temas relacionados con la exploración del espacio, incluyendo misiones espaciales, descubrimientos científicos, lanzamientos de cohetes, programas de exploración lunar y marciana, y la participación de agencias espaciales como la NASA, ESA y otras.

  • Industria Aeroespacial: Como experto en la industria, Foust informa sobre noticias y desarrollos en empresas aeroespaciales líderes como SpaceX, Boeing, Blue Origin, Lockheed Martin y otras, incluyendo lanzamientos comerciales, desarrollos de vehículos espaciales, contratos gubernamentales y colaboraciones público-privadas.

  • Política Espacial: Foust también aborda temas relacionados con la política espacial, incluyendo debates legislativos, presupuestos gubernamentales para la exploración espacial, regulaciones y políticas de agencias espaciales.

  • Tecnología Espacial: Cubre avances tecnológicos en el campo espacial, incluyendo nuevos sistemas de propulsión, tecnologías de navegación, avances en materiales y diseño de vehículos espaciales, y otras innovaciones relevantes para la exploración y la industria espacial.

  • Análisis y Opinión: Además de reportar noticias, Foust también ofrece análisis y opiniones sobre eventos y desarrollos clave en la exploración espacial y la industria aeroespacial, ayudando a contextualizar la información para su audiencia.

RESUMEN DE LA AUTORA SANDRA ERWIN:

Sandra Erwin es una periodista reconocida por su cobertura de temas relacionados con defensa, espacio y tecnología militar. Algunos de los temas que suele tratar incluyen:

  • Defensa y Seguridad Nacional: Erwin suele informar sobre políticas de defensa, estrategias militares, presupuestos de defensa y adquisiciones de equipos y tecnología militar.

  • Exploración Espacial: Como parte de su cobertura, puede abordar noticias relacionadas con misiones espaciales, exploración planetaria, lanzamientos de cohetes, programas espaciales gubernamentales y privados, entre otros temas.

  • Innovación Tecnológica: Erwin también puede cubrir avances en tecnología militar, como armas avanzadas, sistemas de comunicación, ciberseguridad y desarrollo de drones, entre otros.

  • Política Espacial: Además, suele informar sobre políticas y regulaciones relacionadas con la exploración espacial, colaboraciones internacionales en el espacio y la dirección futura de los programas espaciales.

  • Ciencia y Tecnología: A veces, Sandra Erwin puede cubrir noticias relacionadas con avances científicos y tecnológicos en áreas como la ingeniería, la física y la computación, especialmente cuando tienen aplicaciones militares o espaciales.

Creamos un nuevo DataSet con los dos autores seleccionado.

# Definición de autores
autores <- c("Jeff Foust", "Sandra Erwin")

# Filtrado de datos por autores
datos_autores <- datos_space_limpios %>%
  filter(author %in% autores) 

# Verificar los primeros registros del dataset filtrado
head(datos_autores)
##                                                                                          title
## 1                                HawkEye 360 reaches inflection point on path to profitability
## 2               Space Force to release guidelines for the use of commercial satellite services
## 3 ULA has ‘no issues’ with Space Force plan to select three national security launch providers
## 4                            Axiom Space names crew for third private astronaut mission to ISS
## 5 Decadal survey recommends massive funding increase for NASA biological and physical sciences
## 6                                  Kuiper launch companies say they can meet Amazon’s schedule
##                                                                                                                   url
## 1                                https://spacenews.com/hawkeye-360-reaches-inflection-point-on-path-to-profitability/
## 2               https://spacenews.com/space-force-to-release-guidelines-for-the-use-of-commercial-satellite-services/
## 3   https://spacenews.com/ula-has-no-issues-with-space-force-plan-to-select-three-national-security-launch-providers/
## 4                            https://spacenews.com/axiom-space-names-crew-for-third-private-astronaut-mission-to-iss/
## 5 https://spacenews.com/decadal-survey-recommends-massive-funding-increase-for-nasa-biological-and-physical-sciences/
## 6                                   https://spacenews.com/kuiper-launch-companies-say-they-can-meet-amazons-schedule/
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           content
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       paris — with a recent funding round and growing demand for its radio-frequency geolocation capabilities, hawkeye 360’s chief executive says the company has reached an “inflection point” on the path towards profitability and potentially going public. hawkeye 360 announced july 13  it raised $58 million in a series d-1 round  led by blackrock. the company said then that the funding would support development of new satellites and analytics products. the company has raised $368 million to date, said john serafini, chief executive of hawkeye 360, in an interview during world satellite business week here sept. 13. that round may also be the last private funding the company needs to raise. “provided that we execute against our revenue forecasts, which are conservative and we think we can do, we won’t need to raise additional private capital,” he said. profitability, he added, “is on the horizon for us,” but didn’t offer a specific timeline for achieving it. in a presentation at an investor conference a year ago,  serafini said the company was considering going public  though an initial public offering (ipo) of stock in two to three years. that is still the plan now, he said, although the timing will depend as much on market conditions as it will the state of the company. “the market being open or closed has a lot to do with it,” he said of the timing of an ipo, which he said remains likely two to three years out. “whether we can achieve the requisite milestones is the biggest issue,” such as achieving profitability and the right unit economics. “that’s what we can control and we’re rushing like heck to get to that spot.” the new funding and the growth of the business have put hawkeye 360 into a good position, he argued. “i would say we’re at an inflection point,” he said, from the funding to plans to launch additional satellites and development of analytics tools that leverage machine learning and artificial intelligence. “all of that in the next 12 to 18 months has got us in a great position.” governments remain the largest customers for hawkeye 360, which serafini said will likely be the case for the foreseeable future. that has included defense and intelligence applications as well as some civil and broader security applications, like tracking illegal fishing or deforestation. “one of the tenets we set the company up with was to focus on where the money is. the money in remote sensing is, ultimately, in defense and intelligence,” he said. “if you can’t service those customers, you’re not going to exist as a company.” that work has included work in ukraine since russia’s invasion more than a year and a half ago,  tracking sources of gps and other radio-frequency interference . serafini declined to go into details about the company’s work there, but he said the conflict has highlighted the importance of both commercial remote sensing capabilities in general as well as the need to work closely with the users of those capabilities. “throwing remote sensing data over a fence probably doesn’t lead to success,” he said. “one of the areas of growth for hawkeye is understanding the tactical intelligence, surveillance, reconnaissance requirements of our customers, and the networks and systems that they operate in, such that our data can flow into their existing systems as seamlessly as possible and produce another layer of valuable intelligence, not just drowning them in additional data.” that data comes from 21 satellites currently in orbit. six more are scheduled to launch later this year on a rocket lab electron from new zealand. the company’s long-term goal is to have 60 satellites, in 20 three-satellite clusters, which serafini said the company expects to achieve by 2025 or 2026. those satellites, built both by the space flight laboratory at the university of toronto institute for aerospace studies as well as hawkeye 360’s own facility in northern virginia, will be a mix of both its existing block 2 design and new block 3 design. the plans for block 3 are “very fluid,” he said, and could feature two different designs, a smaller one to focus on specific signals and a larger one to do “very advanced” work. hawkeye 360 also announced sept. 12 it promoted rob rainhart, the company’s chief operating officer since 2019, to president. “rob and i have been partners together for eight years,” serafini said. rainhart handles internal company operations, responsibilities he will continue as president. “he keeps the company running on time, and so it felt like the right time to make the move to promote him to president.”
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                washington — u.s. chief of space operations gen. chance saltzman said the space force is finalizing a blueprint for how it will integrate commercial satellite services into military activities.  “one way we are enhancing our relationships with commercial partners is through a soon to be released commercial space strategy,” saltzman said sept. 13 at the global aerospace summit organized by the u.s. chamber of commerce.  “this new strategy will provide a unifying guidance to the force to achieve competitive advantage through commercial augmentation,” he said. the space force and the u.s. military at large rely on commercial companies for a wide range of peacetime and wartime services, but saltzman said there is need for specific guidance on emerging space industry services — such as rapid-revisit satellite imaging and low-earth orbit satellite communications — many of which have only become available in recent years. he characterized the current period as a “true golden era for commercial space.” “one way we are addressing future challenges is by exploring ways to better integrate commercial space,” saltzman said.  “commercial capabilities, services and activities are expanding rapidly. the competition we are seeing today in commercial space is driving innovation and the space force wants to harness these efforts,” he said. “we know our commercial partners are a big reason that we can out compete our adversaries.” “the speed and innovation offered by the commercial space sector can create a strategic advantage,” saltzman said. the goal of the strategy is to help harness that innovation, he added. “i’m hopeful it will be approved and published in the weeks to come.” ‘terms of reference’ saltzman said the new guidance will help clarify the role of commercial providers and how their capabilities might be integrated into military operations, he added. “we will have terms of reference that the space force has created to help our industry partners address the augmentation and integration of commercial space capabilities.” “my hope is that this will bring some clarity to the industry so that they can globally support and augment inherently governmental and military activities that we project from the space domain,” saltzman explained. “ as the conflict in ukraine has shown us , space is critical to modern warfare,” he said. “it has played a vital role in communications, precision navigation and timing, missile warning, command and control, intelligence surveillance and reconnaissance.” “commercial augmentation has proven its value during this conflict,” particularly in satellite-based surveillance. “it’s unclassified. it has promoted shareability it has enabled us to supplement classified data, he added. ‘fundamental conversation’ the commercial strategy is intended to help space force buyers and contractors speak the same language, saltzman said. “it’s important that we’re all having the same fundamental conversation. we have to define our terms.” for example, he said, “we define augmentation as the use of commercial space goods, services and activities to increase both capacity and resilience. similarly, we define what we mean by commercial activity, what is a critical function, what are inherently governmental functions, what tasks can be executed by the private sector.”  with regard to the protection of satellites during conflicts, saltzman noted that the space force intends to work with military allies and private companies to ensure collective security, enabled by data sharing. “going forward, all space users will be in the combat zone during a conflict. you cannot separate civilian and military assets in this domain. so we all share the risk if a war comes to space.” “we need to increase our collaboration with the commercial space industry to enable new capabilities that support integrated deterrence,” he said. this integration includes data sharing, and interoperability between our allies and industry partners.”
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              washington — united launch alliance, one of just two u.s. companies that provide national security launch services, does not have a problem with dod’s decision to add a third competitor, a senior ula executive said sept. 13. gary wentz, ula’s vice president of government and commercial programs, said the company is supportive of the u.s. space force’s proposed strategy to add a third heavy-lift launch provider in the next round of contracts, known as  national security space launch phase 3.  “from what we saw relative to lane 2 and the addition of a third provider, we didn’t see any issues with that,” wentz said during a panel discussion at the global aerospace summit organized by the u.s. chamber of commerce. currently ula and spacex are the only nssl launch providers. due to concerns about growing commercial demand, the space force said it plans to select a third provider in lane 2 of nssl phase 3, creating an opportunity for a new entrant like blue origin which is developing a heavy rocket.  lane 2 providers have to be able to fly to low, medium and high orbits. of the  58 missions expected to be procured under lane 2, seven — five gps satellite launches to medium earth orbit and two direct-to-geostationary orbit launches — will be set aside for a third provider, space force officials said. ula’s ceo tory  bruno in july expressed concerns  about the phase 3 strategy and said he was still reviewing the details. one of bruno’s concerns was that “it’s not a competition if everybody wins.” a ula spokesperson in a statement sept. 13 noted that bruno in an interview last month with  aviation week  said :  “we understand the government’s need to have a broader industrial base at this time of challenge … so we’re ok with the third provider,”  the spokesperson said bruno had concerns about other points in the draft request for proposals not related to a third provider. wentz said the company reviewed the latest draft solicitation and is on board with the plan to add a third provider. he noted that there are now more missions in lane 2 than had been previously forecast so allocating seven to a third provider seems reasonable. “so we support it,” he said.  blue origin ‘looking at the rfp’ blue origin’s vice president of government sales lars hoffman — also speaking at the chamber of commerce event — said the company continues to work with the space force to develop a plan to certify the new glenn rocket for nssl after it starts flying — which the company projects will happen in 2024. “we’ve been doing that for a while,” said hoffman. “so we’re actively engaged with them on that front. things are progressing very nicely and, obviously, we’re looking at the draft requests for proposals that have come out.” hoffman did not say definitively that blue origin will submit a proposal for a lane 2 contract.  with regard to the development of new glenn, he said, “we’ve got more boosters, we’ve got three fairings. a lot of work is going on down at the  florida manufacturing complex .” “we’re on track for launch next year,” hoffman said. 
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       paris — nasa and the other partners on the international space station have approved the crew of the third private astronaut mission by axiom space, scheduled to launch in early 2024. nasa and axiom space announced sept. 12 that they had finalized the crew for the ax-3 mission launching no earlier than january 2024. the mission will be commanded by michael lópez-alegría, a former nasa astronaut who also led the ax-1 mission to the iss in april 2022. the three customers are alper gezeravcı, walter villadei and marcus wandt. villadei, who will be pilot of ax-3, is an italian air force colonel who trained as a backup for the ax-2 mission and  flew on virgin galactic’s first commercial suborbital flight, galactic 01 , in june. gezeravcı, a mission specialist, is a turkish air force officer and wandt, a mission specialist and former air force officer from sweden, was selected as a reserve member of esa’s astronaut corps last november. all three customers had been linked to the upcoming axiom mission. the turkish government announced in april it selected gezeravcı as its first astronaut and had previously signed an agreement with axiom. villadei had trained with axiom for ax-2 with the expectation of going to space on a future mission. esa, working with sweden’s space agency,  announced an agreement with axiom in april for a private astronaut flight , and later named wandt as the astronaut who would go. “this crew is shifting the paradigm of how governments and space agencies access and reap the benefits of microgravity,” lópez-alegría said in a company statement. “the ax-3 mission will be transformational as it fosters partnerships outside the construct of the iss and positions european nations as pioneers of the emerging commercial space industry.” as with the first two axiom missions, ax-3 will launch on a spacex crew dragon spacecraft and will spend up to 14 days on the iss. axiom is also planning a fourth mission, ax-4, later in 2024. the missions are enabled by nasa’s low earth orbit commercialization policy, which allows for up to two private astronaut missions a year to the iss as precursors to both commercial modules axiom plans to add to the station as well as development of commercial space stations that will ultimately succeed the iss. “these commercial efforts continue to expand opportunity and access to microgravity research and discovery,” angela hart, manager of nasa’s commercial low earth orbit development program, said in a nasa statement. “each of these missions is a next step in building our shared future in low earth orbit.”
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 paris — a new decadal survey for biological and physical sciences research in space recommends that nasa increase its spending on such activities by a factor of 10, a move the study says would restore such work to historical levels. the decadal survey, titled  “thriving in space”  and released by the national academies sept. 12, argues the sharp increase in funding for nasa’s biological and physical sciences (bps) division this decade is needed to tackle an ambitious set of new science questions in low earth orbit and beyond. “research in the space environment has taken remarkable steps over the last decade, but nasa, the rest of the u.s. government, and the wider space community globally have bold exploration plans that require commensurate investments in biological and physical science research,” said the decadal survey’s co-chair, krystyn van vliet, professor of engineering and vice president for research and innovation at cornell university, in a statement. nasa’s budget for bps is $85 million in fiscal year 2023. nasa had requested $100 million for the division in its 2023 budget proposal, and is seeking $96.5 million for bps in 2024. the report argues that bps research at nasa is “severely underfunded” based on both its portfolio of research, including topics recommended by the previous decadal survey in 2011, as well as historical funding. that division received nearly $700 million in inflation-adjusted dollars in 1996, but suffered severe cuts in the early 2000s as nasa shifted its emphasis to the constellation exploration program. “in 2010, constellation was canceled, but the funding for bps was not restored and many researchers left the field,” the report notes. another factor driving the proposed spending increase is the science the decadal recommended nasa pursue. it identified 11 key science questions in three themes: adapting to space, living and traveling to space, and probing phenomena hidden by gravity or terrestrial limitations. it also recommended two specific research campaigns that could offer “major and transformative scientific contributions” to research in those fields. one, called bioregenerative life support systems, or bliss, would develop capabilities for long-duration spaceflight. the other, manufacturing materials and processes for sustainability in space, or matrices, would study manufacturing techniques for use in space that reduce waste. the report backed other research in the science of gravitational fields and spacetime and researching the combined effects of radiation and microgravity on different life forms. a larger budget, the decadal added, would help the bps division handle fluctuations of a few tens of millions of dollars a year that are far more disruptive today. “moreover, a budget nearer to $1 billion raises the profile of bps science into the realm of the other divisions within nasa’s science mission directorate,” the report stated, “tangibly recognizing the tremendous human and commercial interest in space exploration, the expansion of the bps program beyond low earth orbit (leo), and the development of the space economy.” those issues, the report said, “all drive toward the inescapable conclusion that to provide sustainability and visibility for the program, while funding the science needed to support the expansion of space activities prioritized by this survey,  the budget must rise by a factor of 10 well before the end of the decade .” [emphasis in original.] in addition to the science questions and funding levels, the report addressed the impending transition from the international space station to commercial space stations, known as commercial leo destinations (clds) at nasa. the report warned that bps science risks being overlooked during that transition, including a lack of “science-design requirements” for them. “this delay may result in an unintended consequence that cld companies develop revenue sources to focus on commercial markets, deemphasizing government-funded or fundamental research for public benefit,” the report stated. it called on nasa to engage with cld developers “with all due haste to ensure that science needs are met with clear priority.” “nasa should work to take advantage of the profusion of research capabilities from academia and through commercial space platforms to tackle these new challenges and ensure bps can continue meeting the science needs of the nation,” said rob ferl, a professor at the university of florida and other co-chair of the decadal survey, in a statement. nasa said it would take some time to review the report before responding to its recommendations. “we look forward to using the survey to guide our next decade of transformative science as we maintain u.s. science leadership in space,” said lisa carnell, bps division director at nasa, in an agency statement. in  an interview last month , carnell said she hoped the decadal would have “very targeted priority focus areas” that would guide the agency’s investments in the field. she said she also wanted to see “decision rules” that would guide priorities should funding fall short of the report’s recommendations, an approach used in other nasa science decadal surveys. the decadal survey did include several decision rules based on changes in funding or access to the iss and future clds. carnell said in the interview that she expected the agency to release a formal, high-level public response to the decadal survey, and host a town hall about it, by early next year.
## 6 paris — the three companies with multibillion-dollar contracts to launch amazons’s project kuiper constellation say they are committed to deploying those satellites on schedule despite delays in the development of their vehicles. amazon  announced contracts in april 2022 with arianespace, blue origin and united launch alliance  for up to 83 launches of the ariane 6, new glenn and vulcan centaur rockets to deploy the 3,236-satellite constellation. the contracts combined represent the largest single commercial launch order to date. amazon made the commitments even though none of the vehicles had launched at the time of the contract signing. all three vehicles have suffered extensive development delays and still have yet to attempt a single launch. the contracting process recently triggered  a lawsuit by a pension fund that is an amazon shareholder against the company’s board of directors . during a sept. 11 panel at euroconsult’s world satellite business week here, executives of the three launch companies said they are getting closer to their vehicles’ first launches. tory bruno, president and chief executive of ula, noted that the company had planned the inaugural vulcan centaur launch for this spring but delayed it after an incident during a test of a centaur upper stage where hydrogen fuel leaked from the stage and ignited. the company said in june it would modify the centaur to increase the thickness of part of the stage to correct the problem,  pushing that inaugural launch to some time in the fourth quarter . the replacement centaur that will be used on the first launch is in “final assembly,” he said, having passed a pressure test that qualifies the changes made to correct the problem seen in the earlier test. “we’ll be shipping the vehicle out to the pad in november and i expect to fly the vulcan in december.” jarrett jones, senior vice president for new glenn at blue origin, said the company is still working towards a first launch of that rocket in 2024 but did not offer a more precise timeframe. the first flight vehicle will arrive at the integration facility by the end of the year, followed by integrated hot-fire tests. blue origin is planning “multiple” launches of new glenn in 2024, but he did not disclose details about the manifest. “we intend to meet our contractual requirements in ’24,” he said. one of those contracted launches would be for nasa’s escapade mars smallsat mission, currently scheduled to launch in august 2024. stéphane israël, chief executive of arianespace, reiterated comments made by officials at a sept. 4 briefing where they said  the european space agency would set a target launch period for ariane 6 after a long-duration hot-fire test of the core stage planned for early october . that test will follow a successful short-duration test sept. 5 and an upper-stage firing test sept. 1. that inaugural flight will come some time in 2024, but he declined to be more specific. “things are progressing very well. we are very happy,” he said. ariane 6, like both new glenn and vulcan centaur, had once planned initial launches in 2020. for all three companies, amazon is their largest commercial customer and perhaps their most impatient one. under terms of its federal communication commission license, the company must deploy at least half of the constellation by july 2026, giving it less than three years to launch more than 1,800 satellites. the remaining satellites must be in orbit by july 2029. all three executives said they are working to ramp up production and launch operations in order to meet amazon’s deadline. “we will deliver for kuiper as quick as possible after the maiden flight,” israël said. those launches will not begin with the second ariane 6 flight, he said, but will start “quickly,” intermixed with launches for institutional customers like esa. many of the kuiper launches will use an upgraded version of the ariane 6’s solid-fuel boosters that will increase its payload performance, allowing each launch to carry as many as 40 satellites. “we are on track for kuiper.” blue origin also does not plan to fly kuiper satellites on the initial launches of new glenn, jones said. the company has four boosters in various stages of development, each designed to be reused up to 25 times. he said the company was also looking at other ways to double its launch capacity that he did not go into. “we’re not concerned about meeting the contractual requirements for kuiper.” bruno said ula was taking a three-part approach to building up its launch capacity. one step involves infrastructure improvements to increase production of vehicles, an investment he suggested ran into the billions of dollars. a second step, he said, is that ula will start launching kuiper satellites on atlas rockets using a contract it previously signed with ula. nine atlas rockets are allocated to kuiper, including one expected to launch in the next month carrying two prototype satellites that had been slated to fly on the first vulcan launch. a third step is stockpiling vulcan hardware, like boosters, to allow launches to take place rapidly once the vehicle is in service. “when the kuiper satellites come our way, we’ve already got whole rockets in inventory,” he said. three other companies on the panel do not have amazon launch contracts but are working to get new vehicles to orbit. iwao igarashi, vice president and general manager of mitsubishi heavy industries, said the investigation into  the failed inaugural h3 launch in march  was completed last month. on that flight, the rocket’s first stage appeared to perform as expected but the second stage failed to ignite. “we defined the corrective actions and some of them were applied to the h-2a launch vehicle last week,” he said, a reference to  a successful sept. 6 launch of an h-2a  carrying the xrism x-ray astronomy satellite and slim lunar lander. the next h3 launch is planned before the end of the year. relativity space retired its terran 1 small launch vehicle  after a single, unsuccessful flight in march so it could focus on its larger terran r, now planned for 2026. the experience from terran 1, said josh brost, senior vice president at relativity, “gives us that confidence to pivot on to this much larger launch system.” tom ochinero, vice president of commercial sales at spacex, reiterated the  comments made by the company and the federal aviation administration sept. 8 about the status of starship , now that the faa has closed its investigation into the failed first launch in april. “from a vehicle readiness perspective, we’re almost there,” he said, as the company works with the faa on an updated launch license. “we’re real close and we hope we can have a cool, successful test flight real soon.”
##         author       date postexcerpt year
## 1   Jeff Foust 2023-09-14             2023
## 2 Sandra Erwin 2023-09-13             2023
## 3 Sandra Erwin 2023-09-13             2023
## 4   Jeff Foust 2023-09-13             2023
## 5   Jeff Foust 2023-09-13             2023
## 6   Jeff Foust 2023-09-12             2023

Y creamos dos gráficos para mostrar la frecuencia de publicaciones.

ggplot(datos_autores, 
       aes(x = date, 
           fill = author)) +
  geom_histogram(position = "identity", 
                 bins = 20, 
                 show.legend = F) +
  facet_wrap(~author, ncol = 1)

Las gráficas que se muestran previamente muestran cuando se han realizado las publicaciones de los artículos científicos tanto de Jeff Foust (rojo) como de Sandra Erwin (azul) a medida que avanza el tiempo. Podemos distinguir una diferencia principal entre la gráfica superior (Jeff) donde se ve que el autor comenzó a escribir a lo largo de 2013 y la gráfica inferior (Sandra) donde se ve que la periodista comenzó a trabajar para esta revista 4 años más tarde.

En cuanto a la frecuencia de las publicaciones es bastante constante lo cual podría reflejar que no es un hobby si no su trabajo.

Ahora vamos a separar a guardar los histogramas resultantes para cada autor.

articulos_jeff <- datos_autores %>%
     filter(date > as.Date("2017-01-01")
           & (author  == "Jeff Foust")) %>%
    ggplot(aes(x = date, 
             fill = author)) +
    geom_histogram(position = "identity", 
                   bins = 40, 
                   show.legend = F) 

articulos_sandra <- datos_autores %>%
  filter(date > as.Date("2017-01-01")
           & (author  == "Sandra Erwin")) %>%
  ggplot(aes(x = date, 
           fill = author)) +
  geom_histogram(position = "identity", 
                 bins = 40, 
                 show.legend = F)

Vamos a ver la frecuencia de las palabras de cada autor. Para ello, primero debemos tokenizar datos_autores quitando las stopwords.

# Tokenización
datos_autores %>%
  unnest_tokens(word, content) %>%
  filter(!word %in% stop_words$word,
         !word %in% str_remove_all(stop_words$word, "'"),
         str_detect(word, "[a-z]")) -> tokens_autores

# Cálculo de Frecuencia
frequency <- tokens_autores %>% 
  count(author, 
        word, 
        sort = TRUE) %>% 
  left_join(tokens_autores %>% 
              count(author, 
                    name = "total")) %>%
  mutate(freq = n/total)

# Resultados
frequency
##             author                  word     n   total         freq
## 1     Sandra Erwin                 space 28207  716353 3.937584e-02
## 2       Jeff Foust                 space 26004 1573821 1.652284e-02
## 3       Jeff Foust                launch 24842 1573821 1.578451e-02
## 4       Jeff Foust                  nasa 20639 1573821 1.311394e-02
## 5       Jeff Foust               mission 13649 1573821 8.672524e-03
## 6     Sandra Erwin                 force 13246  716353 1.849088e-02
## 7       Jeff Foust               company 12474 1573821 7.925933e-03
## 8       Jeff Foust            commercial  8714 1573821 5.536843e-03
## 9       Jeff Foust            spacecraft  8410 1573821 5.343683e-03
## 10    Sandra Erwin                   air  8114  716353 1.132682e-02
## 11    Sandra Erwin            satellites  6996  716353 9.766135e-03
## 12      Jeff Foust                flight  6850 1573821 4.352464e-03
## 13      Jeff Foust              missions  6386 1573821 4.057641e-03
## 14      Jeff Foust             satellite  6350 1573821 4.034766e-03
## 15    Sandra Erwin                   u.s  6268  716353 8.749876e-03
## 16      Jeff Foust               program  6169 1573821 3.919760e-03
## 17      Jeff Foust                  test  6163 1573821 3.915947e-03
## 18      Jeff Foust               vehicle  6075 1573821 3.860032e-03
## 19    Sandra Erwin                launch  6067  716353 8.469288e-03
## 20      Jeff Foust            satellites  5858 1573821 3.722151e-03
## 21      Jeff Foust                spacex  5736 1573821 3.644633e-03
## 22      Jeff Foust                agency  5494 1573821 3.490867e-03
## 23      Jeff Foust                rocket  5433 1573821 3.452108e-03
## 24      Jeff Foust                 orbit  5368 1573821 3.410807e-03
## 25      Jeff Foust               million  5290 1573821 3.361246e-03
## 26    Sandra Erwin               defense  5086  716353 7.099852e-03
## 27      Jeff Foust                  crew  5076 1573821 3.225271e-03
## 28      Jeff Foust                  time  5059 1573821 3.214470e-03
## 29    Sandra Erwin              military  4994  716353 6.971423e-03
## 30      Jeff Foust               station  4990 1573821 3.170627e-03
## 31    Sandra Erwin             satellite  4837  716353 6.752258e-03
## 32      Jeff Foust           development  4803 1573821 3.051808e-03
## 33      Jeff Foust               science  4724 1573821 3.001612e-03
## 34      Jeff Foust                nasa’s  4687 1573821 2.978102e-03
## 35    Sandra Erwin            commercial  4667  716353 6.514944e-03
## 36      Jeff Foust             companies  4622 1573821 2.936802e-03
## 37      Jeff Foust                system  4484 1573821 2.849117e-03
## 38      Jeff Foust             announced  4363 1573821 2.772234e-03
## 39      Jeff Foust                 we’re  4268 1573821 2.711871e-03
## 40      Jeff Foust                 plans  4247 1573821 2.698528e-03
## 41      Jeff Foust                 lunar  4067 1573821 2.584157e-03
## 42      Jeff Foust                  bill  4049 1573821 2.572720e-03
## 43      Jeff Foust                 earth  3956 1573821 2.513628e-03
## 44    Sandra Erwin               systems  3932  716353 5.488914e-03
## 45    Sandra Erwin              national  3928  716353 5.483330e-03
## 46      Jeff Foust                  it’s  3858 1573821 2.451359e-03
## 47      Jeff Foust                 stage  3791 1573821 2.408787e-03
## 48      Jeff Foust             including  3683 1573821 2.340164e-03
## 49      Jeff Foust            washington  3666 1573821 2.329363e-03
## 50      Jeff Foust                  mars  3613 1573821 2.295687e-03
## 51      Jeff Foust             statement  3603 1573821 2.289333e-03
## 52      Jeff Foust                  moon  3389 1573821 2.153358e-03
## 53      Jeff Foust               funding  3387 1573821 2.152087e-03
## 54      Jeff Foust              launches  3371 1573821 2.141921e-03
## 55      Jeff Foust           exploration  3361 1573821 2.135567e-03
## 56      Jeff Foust               support  3358 1573821 2.133661e-03
## 57    Sandra Erwin               command  3214  716353 4.486615e-03
## 58      Jeff Foust                future  3169 1573821 2.013571e-03
## 59      Jeff Foust               systems  3044 1573821 1.934146e-03
## 60      Jeff Foust             scheduled  2991 1573821 1.900470e-03
## 61      Jeff Foust              industry  2960 1573821 1.880773e-03
## 62      Jeff Foust         international  2958 1573821 1.879502e-03
## 63      Jeff Foust                   iss  2948 1573821 1.873148e-03
## 64      Jeff Foust            government  2944 1573821 1.870607e-03
## 65      Jeff Foust                  data  2920 1573821 1.855357e-03
## 66      Jeff Foust                 chief  2919 1573821 1.854722e-03
## 67    Sandra Erwin                 orbit  2854  716353 3.984069e-03
## 68    Sandra Erwin              services  2845  716353 3.971506e-03
## 69      Jeff Foust                 house  2786 1573821 1.770214e-03
## 70      Jeff Foust                 human  2762 1573821 1.754965e-03
## 71      Jeff Foust                budget  2749 1573821 1.746704e-03
## 72      Jeff Foust                  cost  2739 1573821 1.740350e-03
## 73    Sandra Erwin            government  2734  716353 3.816554e-03
## 74      Jeff Foust                   u.s  2731 1573821 1.735267e-03
## 75      Jeff Foust                 march  2726 1573821 1.732090e-03
## 76      Jeff Foust             committee  2724 1573821 1.730819e-03
## 77      Jeff Foust             president  2715 1573821 1.725101e-03
## 78      Jeff Foust             executive  2712 1573821 1.723195e-03
## 79    Sandra Erwin                  data  2708  716353 3.780259e-03
## 80      Jeff Foust            operations  2695 1573821 1.712393e-03
## 81      Jeff Foust                report  2655 1573821 1.686977e-03
## 82    Sandra Erwin               program  2645  716353 3.692314e-03
## 83    Sandra Erwin              security  2626  716353 3.665790e-03
## 84      Jeff Foust              schedule  2623 1573821 1.666644e-03
## 85      Jeff Foust               landing  2591 1573821 1.646312e-03
## 86      Jeff Foust                falcon  2577 1573821 1.637416e-03
## 87      Jeff Foust               meeting  2552 1573821 1.621531e-03
## 88      Jeff Foust                 april  2530 1573821 1.607553e-03
## 89      Jeff Foust               provide  2529 1573821 1.606917e-03
## 90      Jeff Foust                lander  2526 1573821 1.605011e-03
## 91      Jeff Foust              national  2520 1573821 1.601199e-03
## 92      Jeff Foust              vehicles  2514 1573821 1.597386e-03
## 93      Jeff Foust              contract  2501 1573821 1.589126e-03
## 94      Jeff Foust               orbital  2493 1573821 1.584043e-03
## 95    Sandra Erwin                   dod  2472  716353 3.450813e-03
## 96      Jeff Foust            technology  2448 1573821 1.555450e-03
## 97      Jeff Foust         administrator  2420 1573821 1.537659e-03
## 98      Jeff Foust                called  2383 1573821 1.514149e-03
## 99      Jeff Foust               earlier  2368 1573821 1.504618e-03
## 100     Jeff Foust                   fly  2322 1573821 1.475390e-03
## 101     Jeff Foust               planned  2322 1573821 1.475390e-03
## 102     Jeff Foust               billion  2307 1573821 1.465859e-03
## 103     Jeff Foust            additional  2303 1573821 1.463318e-03
## 104   Sandra Erwin              industry  2226  716353 3.107407e-03
## 105   Sandra Erwin               missile  2221  716353 3.100427e-03
## 106     Jeff Foust                  june  2211 1573821 1.404861e-03
## 107   Sandra Erwin               company  2209  716353 3.083675e-03
## 108     Jeff Foust                center  2193 1573821 1.393424e-03
## 109   Sandra Erwin             companies  2192  716353 3.059944e-03
## 110   Sandra Erwin           development  2187  716353 3.052964e-03
## 111     Jeff Foust              director  2157 1573821 1.370550e-03
## 112     Jeff Foust                  july  2156 1573821 1.369914e-03
## 113     Jeff Foust                   air  2149 1573821 1.365467e-03
## 114     Jeff Foust              services  2143 1573821 1.361654e-03
## 115   Sandra Erwin                agency  2142  716353 2.990146e-03
## 116     Jeff Foust                office  2139 1573821 1.359113e-03
## 117     Jeff Foust               payload  2139 1573821 1.359113e-03
## 118     Jeff Foust                engine  2128 1573821 1.352123e-03
## 119   Sandra Erwin            washington  2115  716353 2.952455e-03
## 120     Jeff Foust               flights  2093 1573821 1.329884e-03
## 121     Jeff Foust            conference  2090 1573821 1.327978e-03
## 122     Jeff Foust                people  2083 1573821 1.323530e-03
## 123     Jeff Foust                issues  2077 1573821 1.319718e-03
## 124     Jeff Foust                  late  2047 1573821 1.300656e-03
## 125     Jeff Foust                dragon  2040 1573821 1.296208e-03
## 126     Jeff Foust               artemis  2032 1573821 1.291125e-03
## 127     Jeff Foust                 force  2030 1573821 1.289854e-03
## 128     Jeff Foust                months  2025 1573821 1.286677e-03
## 129     Jeff Foust             officials  2024 1573821 1.286042e-03
## 130     Jeff Foust                virgin  2023 1573821 1.285407e-03
## 131     Jeff Foust                 based  2006 1573821 1.274605e-03
## 132     Jeff Foust             company’s  1998 1573821 1.269522e-03
## 133     Jeff Foust              launched  1997 1573821 1.268886e-03
## 134     Jeff Foust              research  1996 1573821 1.268251e-03
## 135   Sandra Erwin          capabilities  1983  716353 2.768188e-03
## 136     Jeff Foust                review  1974 1573821 1.254272e-03
## 137   Sandra Erwin               service  1966  716353 2.744457e-03
## 138   Sandra Erwin               million  1946  716353 2.716538e-03
## 139     Jeff Foust                   day  1913 1573821 1.215513e-03
## 140     Jeff Foust              programs  1900 1573821 1.207253e-03
## 141     Jeff Foust                 cargo  1896 1573821 1.204711e-03
## 142     Jeff Foust           spaceflight  1895 1573821 1.204076e-03
## 143   Sandra Erwin        communications  1893  716353 2.642552e-03
## 144   Sandra Erwin              contract  1872  716353 2.613237e-03
## 145     Jeff Foust                return  1863 1573821 1.183743e-03
## 146     Jeff Foust            astronauts  1848 1573821 1.174212e-03
## 147   Sandra Erwin            operations  1842  716353 2.571358e-03
## 148     Jeff Foust              congress  1838 1573821 1.167858e-03
## 149   Sandra Erwin            technology  1836  716353 2.562982e-03
## 150     Jeff Foust                 added  1829 1573821 1.162140e-03
## 151     Jeff Foust        administration  1829 1573821 1.162140e-03
## 152     Jeff Foust                senate  1826 1573821 1.160234e-03
## 153     Jeff Foust              payloads  1825 1573821 1.159598e-03
## 154     Jeff Foust                  blue  1807 1573821 1.148161e-03
## 155     Jeff Foust             customers  1807 1573821 1.148161e-03
## 156     Jeff Foust              expected  1794 1573821 1.139901e-03
## 157   Sandra Erwin                  it’s  1786  716353 2.493184e-03
## 158     Jeff Foust                boeing  1770 1573821 1.124651e-03
## 159   Sandra Erwin                 based  1760  716353 2.456889e-03
## 160   Sandra Erwin          intelligence  1752  716353 2.445722e-03
## 161     Jeff Foust                  team  1745 1573821 1.108766e-03
## 162     Jeff Foust             agreement  1743 1573821 1.107496e-03
## 163     Jeff Foust                 month  1736 1573821 1.103048e-03
## 164     Jeff Foust                 issue  1719 1573821 1.092246e-03
## 165     Jeff Foust              business  1707 1573821 1.084621e-03
## 166     Jeff Foust                  site  1702 1573821 1.081444e-03
## 167   Sandra Erwin                system  1694  716353 2.364756e-03
## 168   Sandra Erwin               mission  1683  716353 2.349400e-03
## 169     Jeff Foust                   sls  1674 1573821 1.063653e-03
## 170     Jeff Foust                   set  1655 1573821 1.051581e-03
## 171   Sandra Erwin              pentagon  1649  716353 2.301938e-03
## 172     Jeff Foust                  date  1643 1573821 1.043956e-03
## 173     Jeff Foust                 final  1626 1573821 1.033154e-03
## 174     Jeff Foust                policy  1615 1573821 1.026165e-03
## 175     Jeff Foust                united  1596 1573821 1.014092e-03
## 176     Jeff Foust                  week  1596 1573821 1.014092e-03
## 177     Jeff Foust             potential  1594 1573821 1.012822e-03
## 178     Jeff Foust             spacenews  1585 1573821 1.007103e-03
## 179   Sandra Erwin                ground  1570  716353 2.191657e-03
## 180     Jeff Foust              includes  1569 1573821 9.969368e-04
## 181     Jeff Foust                 ready  1559 1573821 9.905828e-04
## 182     Jeff Foust               current  1542 1573821 9.797811e-04
## 183     Jeff Foust             astronaut  1540 1573821 9.785103e-04
## 184     Jeff Foust              continue  1535 1573821 9.753333e-04
## 185   Sandra Erwin                 we’re  1526  716353 2.130235e-03
## 186     Jeff Foust                design  1525 1573821 9.689793e-04
## 187     Jeff Foust        communications  1524 1573821 9.683439e-04
## 188     Jeff Foust               weather  1524 1573821 9.683439e-04
## 189   Sandra Erwin            department  1523  716353 2.126047e-03
## 190     Jeff Foust           bridenstine  1519 1573821 9.651669e-04
## 191     Jeff Foust               eastern  1514 1573821 9.619900e-04
## 192     Jeff Foust                 soyuz  1513 1573821 9.613546e-04
## 193   Sandra Erwin             secretary  1510  716353 2.107899e-03
## 194   Sandra Erwin                united  1510  716353 2.107899e-03
## 195   Sandra Erwin              congress  1506  716353 2.102315e-03
## 196     Jeff Foust                 tests  1495 1573821 9.499174e-04
## 197     Jeff Foust               develop  1484 1573821 9.429281e-04
## 198     Jeff Foust               project  1477 1573821 9.384803e-04
## 199   Sandra Erwin                office  1477  716353 2.061833e-03
## 200     Jeff Foust               process  1471 1573821 9.346679e-04
## 201     Jeff Foust                   low  1468 1573821 9.327617e-04
## 202     Jeff Foust            developing  1462 1573821 9.289494e-04
## 203   Sandra Erwin               support  1462  716353 2.040893e-03
## 204   Sandra Erwin                  time  1458  716353 2.035309e-03
## 205     Jeff Foust               testing  1453 1573821 9.232308e-04
## 206   Sandra Erwin                 earth  1452  716353 2.026934e-03
## 207     Jeff Foust                fiscal  1444 1573821 9.175122e-04
## 208     Jeff Foust                  plan  1443 1573821 9.168768e-04
## 209   Sandra Erwin                rocket  1443  716353 2.014370e-03
## 210     Jeff Foust                  days  1439 1573821 9.143352e-04
## 211   Sandra Erwin              programs  1436  716353 2.004598e-03
## 212     Jeff Foust              included  1435 1573821 9.117937e-04
## 213     Jeff Foust               request  1435 1573821 9.117937e-04
## 214     Jeff Foust              decision  1428 1573821 9.073459e-04
## 215   Sandra Erwin           acquisition  1428  716353 1.993431e-03
## 216     Jeff Foust                series  1427 1573821 9.067105e-04
## 217   Sandra Erwin                   sda  1427  716353 1.992035e-03
## 218     Jeff Foust                   esa  1420 1573821 9.022627e-04
## 219     Jeff Foust                   lab  1415 1573821 8.990857e-04
## 220     Jeff Foust            propulsion  1415 1573821 8.990857e-04
## 221     Jeff Foust                module  1414 1573821 8.984503e-04
## 222     Jeff Foust                origin  1407 1573821 8.940026e-04
## 223     Jeff Foust                 study  1407 1573821 8.940026e-04
## 224     Jeff Foust                 start  1402 1573821 8.908256e-04
## 225     Jeff Foust                 don’t  1396 1573821 8.870132e-04
## 226     Jeff Foust          technologies  1393 1573821 8.851070e-04
## 227   Sandra Erwin                future  1391  716353 1.941780e-03
## 228     Jeff Foust              proposal  1390 1573821 8.832008e-04
## 229     Jeff Foust                   dec  1387 1573821 8.812946e-04
## 230     Jeff Foust              approach  1386 1573821 8.806592e-04
## 231     Jeff Foust            previously  1385 1573821 8.800238e-04
## 232     Jeff Foust               include  1383 1573821 8.787530e-04
## 233   Sandra Erwin          technologies  1383  716353 1.930612e-03
## 234     Jeff Foust             spaceport  1381 1573821 8.774823e-04
## 235     Jeff Foust              european  1379 1573821 8.762115e-04
## 236     Jeff Foust               service  1377 1573821 8.749407e-04
## 237     Jeff Foust                  term  1371 1573821 8.711283e-04
## 238     Jeff Foust                 orion  1370 1573821 8.704929e-04
## 239     Jeff Foust                  sept  1370 1573821 8.704929e-04
## 240     Jeff Foust            activities  1369 1573821 8.698575e-04
## 241     Jeff Foust                   oct  1366 1573821 8.679513e-04
## 242     Jeff Foust                that’s  1361 1573821 8.647743e-04
## 243     Jeff Foust              proposed  1360 1573821 8.641389e-04
## 244     Jeff Foust                   jan  1358 1573821 8.628681e-04
## 245     Jeff Foust                   feb  1355 1573821 8.609620e-04
## 246     Jeff Foust               version  1354 1573821 8.603266e-04
## 247   Sandra Erwin                spacex  1354  716353 1.890130e-03
## 248     Jeff Foust             planetary  1338 1573821 8.501602e-04
## 249     Jeff Foust                   faa  1337 1573821 8.495248e-04
## 250     Jeff Foust                didn’t  1332 1573821 8.463478e-04
## 251     Jeff Foust               surface  1332 1573821 8.463478e-04
## 252   Sandra Erwin               billion  1332  716353 1.859418e-03
## 253     Jeff Foust         constellation  1327 1573821 8.431709e-04
## 254   Sandra Erwin             president  1324  716353 1.848251e-03
## 255   Sandra Erwin                  told  1324  716353 1.848251e-03
## 256     Jeff Foust                   nov  1323 1573821 8.406293e-04
## 257     Jeff Foust                 board  1316 1573821 8.361815e-04
## 258   Sandra Erwin             spacenews  1316  716353 1.837083e-03
## 259     Jeff Foust                 noted  1310 1573821 8.323691e-04
## 260     Jeff Foust                 carry  1307 1573821 8.304629e-04
## 261   Sandra Erwin                report  1304  716353 1.820332e-03
## 262     Jeff Foust               efforts  1301 1573821 8.266506e-04
## 263     Jeff Foust                public  1299 1573821 8.253798e-04
## 264   Sandra Erwin                budget  1297  716353 1.810560e-03
## 265     Jeff Foust                   lot  1288 1573821 8.183904e-04
## 266     Jeff Foust                 panel  1279 1573821 8.126718e-04
## 267     Jeff Foust              briefing  1276 1573821 8.107656e-04
## 268   Sandra Erwin                   gen  1271  716353 1.774265e-03
## 269     Jeff Foust              commerce  1266 1573821 8.044117e-04
## 270     Jeff Foust               federal  1266 1573821 8.044117e-04
## 271     Jeff Foust             telescope  1261 1573821 8.012347e-04
## 272     Jeff Foust                 we’ve  1253 1573821 7.961515e-04
## 273   Sandra Erwin               provide  1249  716353 1.743554e-03
## 274     Jeff Foust               details  1244 1573821 7.904330e-04
## 275     Jeff Foust        transportation  1244 1573821 7.904330e-04
## 276     Jeff Foust             technical  1242 1573821 7.891622e-04
## 277     Jeff Foust                effort  1240 1573821 7.878914e-04
## 278     Jeff Foust                  vice  1237 1573821 7.859852e-04
## 279     Jeff Foust                market  1235 1573821 7.847144e-04
## 280     Jeff Foust             aerospace  1231 1573821 7.821728e-04
## 281     Jeff Foust               engines  1231 1573821 7.821728e-04
## 282     Jeff Foust              released  1208 1573821 7.675587e-04
## 283   Sandra Erwin              research  1200  716353 1.675152e-03
## 284     Jeff Foust               private  1198 1573821 7.612047e-04
## 285     Jeff Foust                recent  1196 1573821 7.599339e-04
## 286   Sandra Erwin                   gps  1196  716353 1.669568e-03
## 287     Jeff Foust                ground  1195 1573821 7.592985e-04
## 288     Jeff Foust             interview  1194 1573821 7.586632e-04
## 289     Jeff Foust               there’s  1188 1573821 7.548508e-04
## 290     Jeff Foust                 major  1187 1573821 7.542154e-04
## 291     Jeff Foust                   pad  1184 1573821 7.523092e-04
## 292     Jeff Foust               russian  1183 1573821 7.516738e-04
## 293     Jeff Foust                safety  1183 1573821 7.516738e-04
## 294   Sandra Erwin              missions  1180  716353 1.647233e-03
## 295     Jeff Foust                   aug  1172 1573821 7.446844e-04
## 296     Jeff Foust               similar  1167 1573821 7.415075e-04
## 297   Sandra Erwin                   low  1167  716353 1.629085e-03
## 298   Sandra Erwin              business  1165  716353 1.626293e-03
## 299     Jeff Foust               forward  1164 1573821 7.396013e-04
## 300     Jeff Foust              increase  1157 1573821 7.351535e-04
## 301     Jeff Foust              provided  1154 1573821 7.332473e-04
## 302   Sandra Erwin                 phase  1150  716353 1.605354e-03
## 303   Sandra Erwin                center  1149  716353 1.603958e-03
## 304   Sandra Erwin             contracts  1146  716353 1.599770e-03
## 305     Jeff Foust                crewed  1143 1573821 7.262579e-04
## 306     Jeff Foust                flying  1137 1573821 7.224456e-04
## 307     Jeff Foust                  risk  1135 1573821 7.211748e-04
## 308     Jeff Foust             developed  1127 1573821 7.160916e-04
## 309     Jeff Foust               initial  1126 1573821 7.154562e-04
## 310     Jeff Foust                   key  1125 1573821 7.148208e-04
## 311   Sandra Erwin                 house  1124  716353 1.569059e-03
## 312     Jeff Foust               manager  1117 1573821 7.097376e-04
## 313     Jeff Foust              specific  1117 1573821 7.097376e-04
## 314     Jeff Foust            department  1116 1573821 7.091022e-04
## 315     Jeff Foust                  call  1115 1573821 7.084668e-04
## 316     Jeff Foust              planning  1113 1573821 7.071961e-04
## 317   Sandra Erwin         constellation  1106  716353 1.543932e-03
## 318     Jeff Foust                   led  1102 1573821 7.002067e-04
## 319     Jeff Foust                 upper  1100 1573821 6.989359e-04
## 320     Jeff Foust            suborbital  1097 1573821 6.970297e-04
## 321     Jeff Foust                 build  1096 1573821 6.963943e-04
## 322   Sandra Erwin           procurement  1091  716353 1.522992e-03
## 323     Jeff Foust              december  1089 1573821 6.919465e-04
## 324     Jeff Foust                  goal  1084 1573821 6.887696e-04
## 325     Jeff Foust               october  1084 1573821 6.887696e-04
## 326     Jeff Foust                debris  1083 1573821 6.881342e-04
## 327     Jeff Foust             completed  1078 1573821 6.849572e-04
## 328     Jeff Foust              galactic  1075 1573821 6.830510e-04
## 329     Jeff Foust              agency’s  1073 1573821 6.817802e-04
## 330     Jeff Foust                change  1073 1573821 6.817802e-04
## 331     Jeff Foust              progress  1069 1573821 6.792386e-04
## 332   Sandra Erwin                  cost  1069  716353 1.492281e-03
## 333     Jeff Foust              received  1063 1573821 6.754262e-04
## 334     Jeff Foust               failure  1061 1573821 6.741554e-04
## 335     Jeff Foust                 built  1057 1573821 6.716139e-04
## 336     Jeff Foust              american  1055 1573821 6.703431e-04
## 337     Jeff Foust               council  1055 1573821 6.703431e-04
## 338     Jeff Foust             september  1048 1573821 6.658953e-04
## 339     Jeff Foust               gateway  1046 1573821 6.646245e-04
## 340     Jeff Foust               defense  1045 1573821 6.639891e-04
## 341     Jeff Foust          capabilities  1043 1573821 6.627183e-04
## 342     Jeff Foust              spending  1042 1573821 6.620829e-04
## 343     Jeff Foust              agencies  1038 1573821 6.595413e-04
## 344     Jeff Foust                  half  1037 1573821 6.589059e-04
## 345     Jeff Foust                 delay  1036 1573821 6.582705e-04
## 346     Jeff Foust              designed  1036 1573821 6.582705e-04
## 347   Sandra Erwin             strategic  1030  716353 1.437839e-03
## 348     Jeff Foust                stated  1029 1573821 6.538228e-04
## 349   Sandra Erwin             announced  1027  716353 1.433651e-03
## 350     Jeff Foust             associate  1022 1573821 6.493750e-04
## 351     Jeff Foust           competition  1022 1573821 6.493750e-04
## 352     Jeff Foust                  move  1022 1573821 6.493750e-04
## 353   Sandra Erwin              director  1020  716353 1.423879e-03
## 354     Jeff Foust                  musk  1017 1573821 6.461980e-04
## 355   Sandra Erwin                  base  1015  716353 1.416899e-03
## 356     Jeff Foust               attempt  1014 1573821 6.442918e-04
## 357   Sandra Erwin                 plans  1011  716353 1.411315e-03
## 358     Jeff Foust                delays  1007 1573821 6.398440e-04
## 359     Jeff Foust                 solar  1007 1573821 6.398440e-04
## 360     Jeff Foust                 power   998 1573821 6.341255e-04
## 361     Jeff Foust                 we’ll   997 1573821 6.334901e-04
## 362     Jeff Foust                 rover   996 1573821 6.328547e-04
## 363     Jeff Foust            successful   988 1573821 6.277715e-04
## 364     Jeff Foust            kilometers   984 1573821 6.252299e-04
## 365     Jeff Foust           information   983 1573821 6.245945e-04
## 366     Jeff Foust              carrying   981 1573821 6.233237e-04
## 367     Jeff Foust           opportunity   981 1573821 6.233237e-04
## 368     Jeff Foust             contracts   974 1573821 6.188760e-04
## 369   Sandra Erwin              lockheed   970  716353 1.354081e-03
## 370     Jeff Foust               complex   963 1573821 6.118866e-04
## 371   Sandra Erwin                market   960  716353 1.340121e-03
## 372     Jeff Foust              facility   959 1573821 6.093450e-04
## 373   Sandra Erwin               develop   958  716353 1.337330e-03
## 374     Jeff Foust              spacex’s   957 1573821 6.080742e-04
## 375     Jeff Foust             resources   956 1573821 6.074388e-04
## 376     Jeff Foust                access   955 1573821 6.068034e-04
## 377   Sandra Erwin              northrop   954  716353 1.331746e-03
## 378     Jeff Foust              november   950 1573821 6.036265e-04
## 379     Jeff Foust             proposals   949 1573821 6.029911e-04
## 380     Jeff Foust            california   941 1573821 5.979079e-04
## 381   Sandra Erwin               network   938  716353 1.309410e-03
## 382     Jeff Foust           performance   937 1573821 5.953663e-04
## 383     Jeff Foust             kilograms   936 1573821 5.947309e-04
## 384     Jeff Foust              electron   935 1573821 5.940955e-04
## 385     Jeff Foust          announcement   929 1573821 5.902831e-04
## 386     Jeff Foust              asteroid   925 1573821 5.877416e-04
## 387   Sandra Erwin               funding   922  716353 1.287075e-03
## 388     Jeff Foust          subcommittee   917 1573821 5.826584e-04
## 389     Jeff Foust               ability   915 1573821 5.813876e-04
## 390     Jeff Foust                 heavy   915 1573821 5.813876e-04
## 391     Jeff Foust        appropriations   914 1573821 5.807522e-04
## 392     Jeff Foust                 texas   914 1573821 5.807522e-04
## 393     Jeff Foust               control   913 1573821 5.801168e-04
## 394     Jeff Foust             launching   910 1573821 5.782106e-04
## 395     Jeff Foust                 weeks   909 1573821 5.775752e-04
## 396     Jeff Foust              february   906 1573821 5.756690e-04
## 397     Jeff Foust                 round   906 1573821 5.756690e-04
## 398     Jeff Foust                raised   905 1573821 5.750336e-04
## 399     Jeff Foust               started   905 1573821 5.750336e-04
## 400     Jeff Foust               perform   903 1573821 5.737628e-04
## 401     Jeff Foust              building   901 1573821 5.724920e-04
## 402     Jeff Foust               florida   900 1573821 5.718566e-04
## 403     Jeff Foust                  deal   898 1573821 5.705859e-04
## 404     Jeff Foust              existing   895 1573821 5.686797e-04
## 405     Jeff Foust               january   894 1573821 5.680443e-04
## 406   Sandra Erwin                 don’t   893  716353 1.246592e-03
## 407     Jeff Foust                   ago   892 1573821 5.667735e-04
## 408     Jeff Foust              intended   892 1573821 5.667735e-04
## 409     Jeff Foust            management   892 1573821 5.667735e-04
## 410   Sandra Erwin                 china   891  716353 1.243800e-03
## 411     Jeff Foust                larger   889 1573821 5.648673e-04
## 412   Sandra Erwin             committee   887  716353 1.238216e-03
## 413   Sandra Erwin                 chief   881  716353 1.229841e-03
## 414   Sandra Erwin              vehicles   880  716353 1.228445e-03
## 415     Jeff Foust         opportunities   878 1573821 5.578779e-04
## 416   Sandra Erwin             providers   876  716353 1.222861e-03
## 417     Jeff Foust              partners   875 1573821 5.559717e-04
## 418     Jeff Foust                 award   874 1573821 5.553363e-04
## 419     Jeff Foust              starship   874 1573821 5.553363e-04
## 420     Jeff Foust               hearing   873 1573821 5.547009e-04
## 421   Sandra Erwin                  army   872  716353 1.217277e-03
## 422     Jeff Foust                 event   870 1573821 5.527948e-04
## 423     Jeff Foust                 range   867 1573821 5.508886e-04
## 424     Jeff Foust                 white   865 1573821 5.496178e-04
## 425   Sandra Erwin               vehicle   863  716353 1.204713e-03
## 426   Sandra Erwin              launches   861  716353 1.201921e-03
## 427     Jeff Foust              cubesats   859 1573821 5.458054e-04
## 428     Jeff Foust                 world   858 1573821 5.451700e-04
## 429     Jeff Foust                   p.m   856 1573821 5.438992e-04
## 430     Jeff Foust               license   854 1573821 5.426284e-04
## 431     Jeff Foust              complete   852 1573821 5.413576e-04
## 432   Sandra Erwin                forces   852  716353 1.189358e-03
## 433     Jeff Foust              previous   851 1573821 5.407222e-04
## 434     Jeff Foust              starlink   849 1573821 5.394514e-04
## 435   Sandra Erwin               force’s   848  716353 1.183774e-03
## 436     Jeff Foust                  life   846 1573821 5.375452e-04
## 437     Jeff Foust                 hours   845 1573821 5.369099e-04
## 438     Jeff Foust            investment   844 1573821 5.362745e-04
## 439   Sandra Erwin                called   844  716353 1.178190e-03
## 440     Jeff Foust                august   842 1573821 5.350037e-04
## 441     Jeff Foust                 level   841 1573821 5.343683e-04
## 442     Jeff Foust                 close   839 1573821 5.330975e-04
## 443     Jeff Foust            scientists   834 1573821 5.299205e-04
## 444     Jeff Foust              critical   833 1573821 5.292851e-04
## 445   Sandra Erwin          architecture   833  716353 1.162835e-03
## 446   Sandra Erwin               imagery   830  716353 1.158647e-03
## 447     Jeff Foust                 costs   829 1573821 5.267435e-04
## 448     Jeff Foust              selected   829 1573821 5.267435e-04
## 449     Jeff Foust           significant   826 1573821 5.248373e-04
## 450   Sandra Erwin                  plan   823  716353 1.148875e-03
## 451     Jeff Foust                   act   821 1573821 5.216603e-04
## 452   Sandra Erwin              payloads   816  716353 1.139103e-03
## 453     Jeff Foust                   mid   815 1573821 5.178480e-04
## 454     Jeff Foust               offered   814 1573821 5.172126e-04
## 455     Jeff Foust               quarter   814 1573821 5.172126e-04
## 456   Sandra Erwin                global   812  716353 1.133519e-03
## 457     Jeff Foust                deputy   811 1573821 5.153064e-04
## 458     Jeff Foust                signed   811 1573821 5.153064e-04
## 459     Jeff Foust               delayed   805 1573821 5.114940e-04
## 460     Jeff Foust                taking   802 1573821 5.095878e-04
## 461     Jeff Foust              original   800 1573821 5.083170e-04
## 462   Sandra Erwin                 build   800  716353 1.116768e-03
## 463     Jeff Foust                 focus   797 1573821 5.064108e-04
## 464     Jeff Foust                planet   797 1573821 5.064108e-04
## 465   Sandra Erwin               control   796  716353 1.111184e-03
## 466   Sandra Erwin               grumman   796  716353 1.111184e-03
## 467     Jeff Foust            originally   794 1573821 5.045046e-04
## 468   Sandra Erwin                martin   791  716353 1.104204e-03
## 469     Jeff Foust         investigation   786 1573821 4.994215e-04
## 470   Sandra Erwin           information   785  716353 1.095828e-03
## 471   Sandra Erwin               process   781  716353 1.090245e-03
## 472   Sandra Erwin                 layer   780  716353 1.088849e-03
## 473   Sandra Erwin              strategy   780  716353 1.088849e-03
## 474     Jeff Foust                   i’m   778 1573821 4.943383e-04
## 475     Jeff Foust                 money   776 1573821 4.930675e-04
## 476     Jeff Foust               percent   774 1573821 4.917967e-04
## 477     Jeff Foust                 ahead   771 1573821 4.898905e-04
## 478     Jeff Foust           cooperation   770 1573821 4.892551e-04
## 479     Jeff Foust                 phase   769 1573821 4.886197e-04
## 480     Jeff Foust               studies   768 1573821 4.879843e-04
## 481     Jeff Foust              advisory   767 1573821 4.873489e-04
## 482   Sandra Erwin               raymond   767  716353 1.070701e-03
## 483     Jeff Foust              security   766 1573821 4.867135e-04
## 484   Sandra Erwin                domain   764  716353 1.066513e-03
## 485     Jeff Foust            experience   763 1573821 4.848074e-04
## 486     Jeff Foust                argued   762 1573821 4.841720e-04
## 487     Jeff Foust                single   762 1573821 4.841720e-04
## 488     Jeff Foust               related   760 1573821 4.829012e-04
## 489     Jeff Foust             roscosmos   760 1573821 4.829012e-04
## 490     Jeff Foust              chairman   759 1573821 4.822658e-04
## 491     Jeff Foust                  cape   758 1573821 4.816304e-04
## 492     Jeff Foust                  noaa   758 1573821 4.816304e-04
## 493     Jeff Foust              concerns   757 1573821 4.809950e-04
## 494     Jeff Foust               minutes   754 1573821 4.790888e-04
## 495   Sandra Erwin            spacecraft   752  716353 1.049762e-03
## 496   Sandra Erwin                   ula   752  716353 1.049762e-03
## 497   Sandra Erwin                  move   751  716353 1.048366e-03
## 498   Sandra Erwin                 added   748  716353 1.044178e-03
## 499   Sandra Erwin            capability   744  716353 1.038594e-03
## 500   Sandra Erwin                   lot   744  716353 1.038594e-03
## 501     Jeff Foust          spaceshiptwo   743 1573821 4.720994e-04
## 502   Sandra Erwin                that’s   741  716353 1.034406e-03
## 503     Jeff Foust                remain   735 1573821 4.670163e-04
## 504     Jeff Foust              aviation   733 1573821 4.657455e-04
## 505     Jeff Foust             providing   731 1573821 4.644747e-04
## 506     Jeff Foust                  lead   730 1573821 4.638393e-04
## 507     Jeff Foust                  past   730 1573821 4.638393e-04
## 508   Sandra Erwin                  vice   729  716353 1.017655e-03
## 509     Jeff Foust                  land   728 1573821 4.625685e-04
## 510     Jeff Foust          requirements   727 1573821 4.619331e-04
## 511     Jeff Foust              recently   726 1573821 4.612977e-04
## 512     Jeff Foust             confirmed   725 1573821 4.606623e-04
## 513     Jeff Foust                cygnus   722 1573821 4.587561e-04
## 514   Sandra Erwin                 noted   720  716353 1.005091e-03
## 515   Sandra Erwin                 issue   719  716353 1.003695e-03
## 516     Jeff Foust                   rep   718 1573821 4.562145e-04
## 517     Jeff Foust               booster   716 1573821 4.549437e-04
## 518   Sandra Erwin                senate   716  716353 9.995072e-04
## 519     Jeff Foust                  meet   715 1573821 4.543083e-04
## 520   Sandra Erwin               orbital   715  716353 9.981113e-04
## 521   Sandra Erwin          requirements   714  716353 9.967153e-04
## 522     Jeff Foust               release   711 1573821 4.517668e-04
## 523     Jeff Foust               growing   710 1573821 4.511314e-04
## 524     Jeff Foust               expects   707 1573821 4.492252e-04
## 525     Jeff Foust               founder   706 1573821 4.485898e-04
## 526     Jeff Foust              lockheed   706 1573821 4.485898e-04
## 527     Jeff Foust                caused   705 1573821 4.479544e-04
## 528     Jeff Foust                   jim   705 1573821 4.479544e-04
## 529   Sandra Erwin                access   705  716353 9.841517e-04
## 530     Jeff Foust                nelson   703 1573821 4.466836e-04
## 531   Sandra Erwin              continue   703  716353 9.813597e-04
## 532   Sandra Erwin               private   701  716353 9.785678e-04
## 533     Jeff Foust              disclose   698 1573821 4.435066e-04
## 534     Jeff Foust             starliner   698 1573821 4.435066e-04
## 535     Jeff Foust               operate   697 1573821 4.428712e-04
## 536   Sandra Erwin                satcom   697  716353 9.729840e-04
## 537   Sandra Erwin               sensors   693  716353 9.674002e-04
## 538     Jeff Foust            production   692 1573821 4.396942e-04
## 539     Jeff Foust                 atlas   690 1573821 4.384234e-04
## 540     Jeff Foust                speech   690 1573821 4.384234e-04
## 541     Jeff Foust                failed   689 1573821 4.377880e-04
## 542     Jeff Foust                liquid   689 1573821 4.377880e-04
## 543     Jeff Foust             suggested   689 1573821 4.377880e-04
## 544   Sandra Erwin                people   689  716353 9.618163e-04
## 545   Sandra Erwin              tracking   689  716353 9.618163e-04
## 546     Jeff Foust               kennedy   688 1573821 4.371526e-04
## 547     Jeff Foust                  role   688 1573821 4.371526e-04
## 548     Jeff Foust                 times   688 1573821 4.371526e-04
## 549     Jeff Foust              starting   687 1573821 4.365172e-04
## 550   Sandra Erwin              advanced   687  716353 9.590244e-04
## 551     Jeff Foust                amount   686 1573821 4.358818e-04
## 552     Jeff Foust                 found   686 1573821 4.358818e-04
## 553     Jeff Foust              altitude   685 1573821 4.352464e-04
## 554   Sandra Erwin             commander   683  716353 9.534406e-04
## 555     Jeff Foust                  core   682 1573821 4.333403e-04
## 556     Jeff Foust                growth   680 1573821 4.320695e-04
## 557   Sandra Erwin               awarded   680  716353 9.492527e-04
## 558     Jeff Foust             concluded   679 1573821 4.314341e-04
## 559     Jeff Foust             operating   679 1573821 4.314341e-04
## 560     Jeff Foust            regulatory   677 1573821 4.301633e-04
## 561     Jeff Foust                russia   676 1573821 4.295279e-04
## 562   Sandra Erwin                  test   676  716353 9.436688e-04
## 563     Jeff Foust         authorization   674 1573821 4.282571e-04
## 564     Jeff Foust                 trump   674 1573821 4.282571e-04
## 565     Jeff Foust             canaveral   672 1573821 4.269863e-04
## 566     Jeff Foust              northrop   672 1573821 4.269863e-04
## 567   Sandra Erwin             officials   670  716353 9.352931e-04
## 568   Sandra Erwin                sector   670  716353 9.352931e-04
## 569     Jeff Foust                global   668 1573821 4.244447e-04
## 570   Sandra Erwin                 armed   667  716353 9.311052e-04
## 571     Jeff Foust                 offer   665 1573821 4.225385e-04
## 572   Sandra Erwin              colorado   664  716353 9.269173e-04
## 573   Sandra Erwin              proposal   663  716353 9.255214e-04
## 574     Jeff Foust                 begin   661 1573821 4.199969e-04
## 575     Jeff Foust           instruments   661 1573821 4.199969e-04
## 576   Sandra Erwin                policy   661  716353 9.227294e-04
## 577     Jeff Foust              rocket’s   660 1573821 4.193615e-04
## 578     Jeff Foust          applications   659 1573821 4.187261e-04
## 579   Sandra Erwin              critical   658  716353 9.185416e-04
## 580     Jeff Foust                 prize   657 1573821 4.174554e-04
## 581   Sandra Erwin            innovation   656  716353 9.157496e-04
## 582     Jeff Foust              separate   654 1573821 4.155492e-04
## 583     Jeff Foust               concept   653 1573821 4.149138e-04
## 584     Jeff Foust              customer   653 1573821 4.149138e-04
## 585     Jeff Foust           operational   652 1573821 4.142784e-04
## 586     Jeff Foust               require   650 1573821 4.130076e-04
## 587     Jeff Foust             financial   648 1573821 4.117368e-04
## 588     Jeff Foust                  step   648 1573821 4.117368e-04
## 589   Sandra Erwin                  blue   648  716353 9.045820e-04
## 590   Sandra Erwin              launched   647  716353 9.031860e-04
## 591     Jeff Foust                   a.m   644 1573821 4.091952e-04
## 592     Jeff Foust            continuing   644 1573821 4.091952e-04
## 593     Jeff Foust               landers   644 1573821 4.091952e-04
## 594     Jeff Foust               they’re   644 1573821 4.091952e-04
## 595     Jeff Foust                  fund   643 1573821 4.085598e-04
## 596     Jeff Foust              required   642 1573821 4.079244e-04
## 597   Sandra Erwin               current   642  716353 8.962062e-04
## 598     Jeff Foust              upcoming   641 1573821 4.072890e-04
## 599     Jeff Foust                survey   640 1573821 4.066536e-04
## 600     Jeff Foust                ensure   639 1573821 4.060182e-04
## 601     Jeff Foust              approved   638 1573821 4.053828e-04
## 602     Jeff Foust           discussions   637 1573821 4.047474e-04
## 603   Sandra Erwin                 trump   636  716353 8.878304e-04
## 604     Jeff Foust                 press   635 1573821 4.034766e-04
## 605     Jeff Foust               options   634 1573821 4.028412e-04
## 606   Sandra Erwin            developing   634  716353 8.850385e-04
## 607   Sandra Erwin               weapons   634  716353 8.850385e-04
## 608     Jeff Foust              involved   633 1573821 4.022058e-04
## 609   Sandra Erwin        administration   633  716353 8.836426e-04
## 610     Jeff Foust                 class   631 1573821 4.009350e-04
## 611     Jeff Foust                   run   631 1573821 4.009350e-04
## 612   Sandra Erwin           competition   631  716353 8.808506e-04
## 613     Jeff Foust          astrophysics   630 1573821 4.002997e-04
## 614     Jeff Foust              division   630 1573821 4.002997e-04
## 615     Jeff Foust                   won   629 1573821 3.996643e-04
## 616     Jeff Foust                martin   628 1573821 3.990289e-04
## 617     Jeff Foust             employees   627 1573821 3.983935e-04
## 618     Jeff Foust                meters   627 1573821 3.983935e-04
## 619     Jeff Foust                period   627 1573821 3.983935e-04
## 620     Jeff Foust              aircraft   626 1573821 3.977581e-04
## 621     Jeff Foust                decade   626 1573821 3.977581e-04
## 622     Jeff Foust              extended   626 1573821 3.977581e-04
## 623     Jeff Foust               success   626 1573821 3.977581e-04
## 624     Jeff Foust            leadership   625 1573821 3.971227e-04
## 625     Jeff Foust                  mark   625 1573821 3.971227e-04
## 626     Jeff Foust                passed   625 1573821 3.971227e-04
## 627     Jeff Foust            resolution   625 1573821 3.971227e-04
## 628     Jeff Foust                demand   624 1573821 3.964873e-04
## 629   Sandra Erwin               payload   624  716353 8.710789e-04
## 630   Sandra Erwin               request   623  716353 8.696830e-04
## 631     Jeff Foust              smallsat   622 1573821 3.952165e-04
## 632     Jeff Foust            generation   621 1573821 3.945811e-04
## 633   Sandra Erwin              decision   621  716353 8.668910e-04
## 634   Sandra Erwin                fiscal   621  716353 8.668910e-04
## 635     Jeff Foust                  fire   620 1573821 3.939457e-04
## 636     Jeff Foust                  head   620 1573821 3.939457e-04
## 637     Jeff Foust                 price   619 1573821 3.933103e-04
## 638     Jeff Foust                humans   617 1573821 3.920395e-04
## 639     Jeff Foust               robotic   616 1573821 3.914041e-04
## 640     Jeff Foust              hardware   614 1573821 3.901333e-04
## 641     Jeff Foust                moving   614 1573821 3.901333e-04
## 642     Jeff Foust                europa   613 1573821 3.894979e-04
## 643     Jeff Foust           regulations   613 1573821 3.894979e-04
## 644     Jeff Foust              strategy   613 1573821 3.894979e-04
## 645     Jeff Foust               updated   613 1573821 3.894979e-04
## 646     Jeff Foust            capability   612 1573821 3.888625e-04
## 647     Jeff Foust               address   610 1573821 3.875917e-04
## 648     Jeff Foust               capital   610 1573821 3.875917e-04
## 649     Jeff Foust               seeking   610 1573821 3.875917e-04
## 650   Sandra Erwin              thompson   609  716353 8.501395e-04
## 651     Jeff Foust            discussion   608 1573821 3.863209e-04
## 652   Sandra Erwin                wilson   608  716353 8.487436e-04
## 653     Jeff Foust                ariane   606 1573821 3.850501e-04
## 654     Jeff Foust             rideshare   604 1573821 3.837793e-04
## 655     Jeff Foust              platform   602 1573821 3.825086e-04
## 656     Jeff Foust          presentation   602 1573821 3.825086e-04
## 657     Jeff Foust              projects   601 1573821 3.818732e-04
## 658     Jeff Foust               remains   601 1573821 3.818732e-04
## 659     Jeff Foust                senior   601 1573821 3.818732e-04
## 660   Sandra Erwin               warning   601  716353 8.389718e-04
## 661     Jeff Foust                coming   600 1573821 3.812378e-04
## 662     Jeff Foust              position   600 1573821 3.812378e-04
## 663     Jeff Foust                 prior   600 1573821 3.812378e-04
## 664     Jeff Foust                 china   599 1573821 3.806024e-04
## 665     Jeff Foust               cubesat   599 1573821 3.806024e-04
## 666     Jeff Foust              reported   598 1573821 3.799670e-04
## 667     Jeff Foust                 axiom   597 1573821 3.793316e-04
## 668     Jeff Foust                  post   597 1573821 3.793316e-04
## 669   Sandra Erwin             developed   597  716353 8.333880e-04
## 670     Jeff Foust               liftoff   596 1573821 3.786962e-04
## 671   Sandra Erwin              software   595  716353 8.305961e-04
## 672     Jeff Foust             continued   593 1573821 3.767900e-04
## 673     Jeff Foust                impact   593 1573821 3.767900e-04
## 674   Sandra Erwin                 study   593  716353 8.278042e-04
## 675   Sandra Erwin                 joint   592  716353 8.264082e-04
## 676   Sandra Erwin             operators   592  716353 8.264082e-04
## 677   Sandra Erwin        constellations   591  716353 8.250122e-04
## 678     Jeff Foust         demonstration   590 1573821 3.748838e-04
## 679   Sandra Erwin                create   589  716353 8.222203e-04
## 680     Jeff Foust                 astra   588 1573821 3.736130e-04
## 681     Jeff Foust            university   587 1573821 3.729776e-04
## 682   Sandra Erwin                 start   587  716353 8.194284e-04
## 683     Jeff Foust             community   586 1573821 3.723422e-04
## 684     Jeff Foust               ongoing   586 1573821 3.723422e-04
## 685   Sandra Erwin             aerospace   586  716353 8.180325e-04
## 686   Sandra Erwin               threats   586  716353 8.180325e-04
## 687     Jeff Foust               focused   583 1573821 3.704360e-04
## 688     Jeff Foust               venture   583 1573821 3.704360e-04
## 689     Jeff Foust                 water   583 1573821 3.704360e-04
## 690   Sandra Erwin         international   583  716353 8.138446e-04
## 691     Jeff Foust            instrument   582 1573821 3.698006e-04
## 692   Sandra Erwin              selected   582  716353 8.124486e-04
## 693     Jeff Foust                orbits   581 1573821 3.691652e-04
## 694     Jeff Foust      administration’s   580 1573821 3.685298e-04
## 695   Sandra Erwin                 major   580  716353 8.096567e-04
## 696     Jeff Foust               decadal   579 1573821 3.678944e-04
## 697     Jeff Foust              pandemic   578 1573821 3.672590e-04
## 698   Sandra Erwin              agencies   578  716353 8.068648e-04
## 699     Jeff Foust                expect   577 1573821 3.666237e-04
## 700   Sandra Erwin                   key   576  716353 8.040729e-04
## 701   Sandra Erwin             statement   576  716353 8.040729e-04
## 702   Sandra Erwin                change   574  716353 8.012809e-04
## 703   Sandra Erwin             including   574  716353 8.012809e-04
## 704   Sandra Erwin                   nro   574  716353 8.012809e-04
## 705     Jeff Foust              declined   573 1573821 3.640821e-04
## 706     Jeff Foust              formally   573 1573821 3.640821e-04
## 707     Jeff Foust               rockets   573 1573821 3.640821e-04
## 708     Jeff Foust              comments   572 1573821 3.634467e-04
## 709     Jeff Foust               officer   572 1573821 3.634467e-04
## 710     Jeff Foust              advanced   570 1573821 3.621759e-04
## 711   Sandra Erwin                  john   570  716353 7.956971e-04
## 712     Jeff Foust                sample   569 1573821 3.615405e-04
## 713     Jeff Foust                  base   568 1573821 3.609051e-04
## 714     Jeff Foust            transition   567 1573821 3.602697e-04
## 715     Jeff Foust                  lack   566 1573821 3.596343e-04
## 716   Sandra Erwin              shanahan   565  716353 7.887173e-04
## 717     Jeff Foust                  flew   564 1573821 3.583635e-04
## 718   Sandra Erwin             customers   564  716353 7.873213e-04
## 719     Jeff Foust                 track   562 1573821 3.570927e-04
## 720   Sandra Erwin                   smc   562  716353 7.845294e-04
## 721     Jeff Foust               imaging   561 1573821 3.564573e-04
## 722   Sandra Erwin               optical   561  716353 7.831335e-04
## 723     Jeff Foust                window   560 1573821 3.558219e-04
## 724     Jeff Foust                  john   559 1573821 3.551865e-04
## 725     Jeff Foust              software   559 1573821 3.551865e-04
## 726     Jeff Foust             operators   558 1573821 3.545511e-04
## 727     Jeff Foust            challenges   556 1573821 3.532803e-04
## 728     Jeff Foust                   ula   555 1573821 3.526449e-04
## 729   Sandra Erwin                design   554  716353 7.733617e-04
## 730     Jeff Foust                  deep   553 1573821 3.513741e-04
## 731   Sandra Erwin              expected   553  716353 7.719658e-04
## 732     Jeff Foust                 serve   550 1573821 3.494680e-04
## 733     Jeff Foust              analysis   549 1573821 3.488326e-04
## 734   Sandra Erwin            generation   549  716353 7.663819e-04
## 735   Sandra Erwin                 march   549  716353 7.663819e-04
## 736   Sandra Erwin               project   549  716353 7.663819e-04
## 737     Jeff Foust                remote   548 1573821 3.481972e-04
## 738     Jeff Foust             engineers   547 1573821 3.475618e-04
## 739   Sandra Erwin              separate   547  716353 7.635900e-04
## 740     Jeff Foust                  jwst   546 1573821 3.469264e-04
## 741     Jeff Foust           acquisition   545 1573821 3.462910e-04
## 742     Jeff Foust                  line   545 1573821 3.462910e-04
## 743   Sandra Erwin              projects   545  716353 7.607981e-04
## 744   Sandra Erwin                russia   545  716353 7.607981e-04
## 745     Jeff Foust             countries   544 1573821 3.456556e-04
## 746   Sandra Erwin              multiple   543  716353 7.580062e-04
## 747     Jeff Foust                 lower   542 1573821 3.443848e-04
## 748     Jeff Foust                   sen   542 1573821 3.443848e-04
## 749   Sandra Erwin            enterprise   542  716353 7.566102e-04
## 750     Jeff Foust            facilities   541 1573821 3.437494e-04
## 751     Jeff Foust                  news   541 1573821 3.437494e-04
## 752     Jeff Foust           engineering   540 1573821 3.431140e-04
## 753     Jeff Foust                   atk   539 1573821 3.424786e-04
## 754     Jeff Foust               shepard   538 1573821 3.418432e-04
## 755   Sandra Erwin                 track   538  716353 7.510264e-04
## 756     Jeff Foust               doesn’t   537 1573821 3.412078e-04
## 757     Jeff Foust                  fall   537 1573821 3.412078e-04
## 758     Jeff Foust               limited   537 1573821 3.412078e-04
## 759     Jeff Foust             performed   536 1573821 3.405724e-04
## 760     Jeff Foust               shortly   536 1573821 3.405724e-04
## 761   Sandra Erwin          organization   536  716353 7.482345e-04
## 762     Jeff Foust             questions   535 1573821 3.399370e-04
## 763     Jeff Foust          successfully   534 1573821 3.393016e-04
## 764     Jeff Foust               leading   532 1573821 3.380308e-04
## 765     Jeff Foust                 short   532 1573821 3.380308e-04
## 766     Jeff Foust          spacecraft’s   532 1573821 3.380308e-04
## 767     Jeff Foust              appeared   531 1573821 3.373954e-04
## 768     Jeff Foust          observations   531 1573821 3.373954e-04
## 769     Jeff Foust               shuttle   528 1573821 3.354892e-04
## 770     Jeff Foust          headquarters   527 1573821 3.348538e-04
## 771     Jeff Foust            scientific   527 1573821 3.348538e-04
## 772     Jeff Foust            propellant   526 1573821 3.342184e-04
## 773     Jeff Foust                funded   525 1573821 3.335830e-04
## 774     Jeff Foust              capacity   524 1573821 3.329476e-04
## 775     Jeff Foust                  told   524 1573821 3.329476e-04
## 776   Sandra Erwin            conference   524  716353 7.314829e-04
## 777     Jeff Foust              addition   523 1573821 3.323123e-04
## 778     Jeff Foust                 flown   522 1573821 3.316769e-04
## 779     Jeff Foust                 terms   521 1573821 3.310415e-04
## 780   Sandra Erwin                 world   520  716353 7.258991e-04
## 781     Jeff Foust                citing   519 1573821 3.297707e-04
## 782     Jeff Foust                option   519 1573821 3.297707e-04
## 783     Jeff Foust               awarded   518 1573821 3.291353e-04
## 784     Jeff Foust             estimated   518 1573821 3.291353e-04
## 785   Sandra Erwin                  bill   518  716353 7.231072e-04
## 786   Sandra Erwin                deputy   518  716353 7.231072e-04
## 787     Jeff Foust                  beck   517 1573821 3.284999e-04
## 788     Jeff Foust           observatory   517 1573821 3.284999e-04
## 789     Jeff Foust               firefly   516 1573821 3.278645e-04
## 790     Jeff Foust                follow   516 1573821 3.278645e-04
## 791     Jeff Foust                 funds   516 1573821 3.278645e-04
## 792     Jeff Foust        infrastructure   516 1573821 3.278645e-04
## 793     Jeff Foust                 media   516 1573821 3.278645e-04
## 794   Sandra Erwin             agreement   516  716353 7.203153e-04
## 795   Sandra Erwin        infrastructure   516  716353 7.203153e-04
## 796     Jeff Foust             servicing   515 1573821 3.272291e-04
## 797     Jeff Foust              uncrewed   515 1573821 3.272291e-04
## 798     Jeff Foust           partnership   514 1573821 3.265937e-04
## 799     Jeff Foust             thrusters   514 1573821 3.265937e-04
## 800   Sandra Erwin              building   514  716353 7.175233e-04
## 801   Sandra Erwin               efforts   513  716353 7.161274e-04
## 802     Jeff Foust                  mike   512 1573821 3.253229e-04
## 803     Jeff Foust                sector   511 1573821 3.246875e-04
## 804     Jeff Foust               orbiter   510 1573821 3.240521e-04
## 805     Jeff Foust               capsule   509 1573821 3.234167e-04
## 806     Jeff Foust                images   509 1573821 3.234167e-04
## 807     Jeff Foust           environment   508 1573821 3.227813e-04
## 808   Sandra Erwin                senior   508  716353 7.091476e-04
## 809     Jeff Foust                   arm   507 1573821 3.221459e-04
## 810   Sandra Erwin                 power   507  716353 7.077516e-04
## 811     Jeff Foust                issued   506 1573821 3.215105e-04
## 812     Jeff Foust               climate   504 1573821 3.202397e-04
## 813   Sandra Erwin               there’s   504  716353 7.035637e-04
## 814     Jeff Foust                oneweb   503 1573821 3.196043e-04
## 815     Jeff Foust                  view   503 1573821 3.196043e-04
## 816   Sandra Erwin                branch   502  716353 7.007718e-04
## 817   Sandra Erwin                  week   502  716353 7.007718e-04
## 818     Jeff Foust                 total   501 1573821 3.183335e-04
## 819   Sandra Erwin               forward   501  716353 6.993759e-04
## 820     Jeff Foust            assessment   498 1573821 3.164273e-04
## 821     Jeff Foust            components   498 1573821 3.164273e-04
## 822     Jeff Foust         manufacturing   498 1573821 3.164273e-04
## 823     Jeff Foust                 ocean   498 1573821 3.164273e-04
## 824     Jeff Foust             requested   498 1573821 3.164273e-04
## 825   Sandra Erwin               leaders   498  716353 6.951880e-04
## 826   Sandra Erwin             awareness   497  716353 6.937920e-04
## 827   Sandra Erwin                   leo   497  716353 6.937920e-04
## 828   Sandra Erwin             terminals   496  716353 6.923961e-04
## 829     Jeff Foust                   hls   495 1573821 3.145212e-04
## 830   Sandra Erwin                  june   495  716353 6.910001e-04
## 831   Sandra Erwin                 staff   495  716353 6.910001e-04
## 832     Jeff Foust               revenue   494 1573821 3.138858e-04
## 833   Sandra Erwin               nuclear   493  716353 6.882082e-04
## 834     Jeff Foust                   law   492 1573821 3.126150e-04
## 835     Jeff Foust               sensing   492 1573821 3.126150e-04
## 836     Jeff Foust                 teams   492 1573821 3.126150e-04
## 837     Jeff Foust             beginning   490 1573821 3.113442e-04
## 838     Jeff Foust                 civil   490 1573821 3.113442e-04
## 839     Jeff Foust          organization   490 1573821 3.113442e-04
## 840   Sandra Erwin                   act   490  716353 6.840203e-04
## 841   Sandra Erwin                 cyber   490  716353 6.840203e-04
## 842     Jeff Foust               grumman   489 1573821 3.107088e-04
## 843   Sandra Erwin                  nasa   489  716353 6.826243e-04
## 844     Jeff Foust                  free   488 1573821 3.100734e-04
## 845     Jeff Foust                  fuel   488 1573821 3.100734e-04
## 846     Jeff Foust                   sun   488 1573821 3.100734e-04
## 847     Jeff Foust              speaking   487 1573821 3.094380e-04
## 848   Sandra Erwin                 focus   487  716353 6.798324e-04
## 849   Sandra Erwin            navigation   487  716353 6.798324e-04
## 850     Jeff Foust              alliance   486 1573821 3.088026e-04
## 851     Jeff Foust                   due   486 1573821 3.088026e-04
## 852     Jeff Foust                letter   485 1573821 3.081672e-04
## 853     Jeff Foust                awards   484 1573821 3.075318e-04
## 854     Jeff Foust             investors   484 1573821 3.075318e-04
## 855     Jeff Foust              official   482 1573821 3.062610e-04
## 856     Jeff Foust              response   482 1573821 3.062610e-04
## 857     Jeff Foust                  size   482 1573821 3.062610e-04
## 858     Jeff Foust                reduce   481 1573821 3.056256e-04
## 859     Jeff Foust              stations   481 1573821 3.056256e-04
## 860     Jeff Foust                   top   481 1573821 3.056256e-04
## 861     Jeff Foust               traffic   481 1573821 3.056256e-04
## 862     Jeff Foust             dedicated   480 1573821 3.049902e-04
## 863     Jeff Foust              campaign   479 1573821 3.043548e-04
## 864     Jeff Foust            conditions   479 1573821 3.043548e-04
## 865     Jeff Foust                 field   479 1573821 3.043548e-04
## 866   Sandra Erwin                boeing   479  716353 6.686648e-04
## 867   Sandra Erwin                ensure   479  716353 6.686648e-04
## 868   Sandra Erwin                months   479  716353 6.686648e-04
## 869     Jeff Foust              activity   478 1573821 3.037194e-04
## 870   Sandra Erwin                   ceo   478  716353 6.672688e-04
## 871     Jeff Foust               antares   476 1573821 3.024486e-04
## 872     Jeff Foust                  main   476 1573821 3.024486e-04
## 873     Jeff Foust          preparations   475 1573821 3.018132e-04
## 874     Jeff Foust                strong   475 1573821 3.018132e-04
## 875   Sandra Erwin             potential   475  716353 6.630809e-04
## 876   Sandra Erwin             transport   475  716353 6.630809e-04
## 877     Jeff Foust                create   474 1573821 3.011778e-04
## 878     Jeff Foust               decided   474 1573821 3.011778e-04
## 879     Jeff Foust             increased   474 1573821 3.011778e-04
## 880     Jeff Foust           independent   474 1573821 3.011778e-04
## 881     Jeff Foust                  rate   473 1573821 3.005424e-04
## 882   Sandra Erwin           operational   473  716353 6.602890e-04
## 883     Jeff Foust                  hour   472 1573821 2.999070e-04
## 884     Jeff Foust             primarily   472 1573821 2.999070e-04
## 885   Sandra Erwin                 month   472  716353 6.588930e-04
## 886     Jeff Foust                 bring   471 1573821 2.992716e-04
## 887     Jeff Foust                enable   471 1573821 2.992716e-04
## 888   Sandra Erwin                origin   471  716353 6.574971e-04
## 889   Sandra Erwin                debris   470  716353 6.561011e-04
## 890   Sandra Erwin              missiles   470  716353 6.561011e-04
## 891     Jeff Foust                 joint   469 1573821 2.980009e-04
## 892     Jeff Foust               country   468 1573821 2.973655e-04
## 893     Jeff Foust            foundation   468 1573821 2.973655e-04
## 894     Jeff Foust                fourth   468 1573821 2.973655e-04
## 895     Jeff Foust                  safe   468 1573821 2.973655e-04
## 896     Jeff Foust                europe   467 1573821 2.967301e-04
## 897   Sandra Erwin                   buy   467  716353 6.519132e-04
## 898     Jeff Foust              japanese   466 1573821 2.960947e-04
## 899   Sandra Erwin                  risk   465  716353 6.491213e-04
## 900   Sandra Erwin           engineering   464  716353 6.477254e-04
## 901   Sandra Erwin                 heavy   464  716353 6.477254e-04
## 902     Jeff Foust         environmental   463 1573821 2.941885e-04
## 903   Sandra Erwin                recent   463  716353 6.463294e-04
## 904     Jeff Foust                 polar   462 1573821 2.935531e-04
## 905     Jeff Foust             challenge   461 1573821 2.929177e-04
## 906     Jeff Foust           demonstrate   461 1573821 2.929177e-04
## 907     Jeff Foust                  hope   461 1573821 2.929177e-04
## 908   Sandra Erwin                  news   461  716353 6.435375e-04
## 909     Jeff Foust                  hard   459 1573821 2.916469e-04
## 910     Jeff Foust                stages   459 1573821 2.916469e-04
## 911   Sandra Erwin           contractors   459  716353 6.407456e-04
## 912   Sandra Erwin                engine   459  716353 6.407456e-04
## 913     Jeff Foust              priority   458 1573821 2.910115e-04
## 914   Sandra Erwin               compete   458  716353 6.393496e-04
## 915   Sandra Erwin               operate   458  716353 6.393496e-04
## 916     Jeff Foust               discuss   457 1573821 2.903761e-04
## 917     Jeff Foust            supporting   456 1573821 2.897407e-04
## 918   Sandra Erwin             community   456  716353 6.365577e-04
## 919   Sandra Erwin              existing   456  716353 6.365577e-04
## 920     Jeff Foust                 raise   455 1573821 2.891053e-04
## 921   Sandra Erwin               griffin   455  716353 6.351617e-04
## 922   Sandra Erwin                 april   454  716353 6.337658e-04
## 923   Sandra Erwin            production   454  716353 6.337658e-04
## 924   Sandra Erwin                 white   454  716353 6.337658e-04
## 925     Jeff Foust                 wrote   453 1573821 2.878345e-04
## 926   Sandra Erwin               include   453  716353 6.323698e-04
## 927     Jeff Foust                  clps   452 1573821 2.871991e-04
## 928     Jeff Foust                  loss   452 1573821 2.871991e-04
## 929   Sandra Erwin            activities   452  716353 6.309738e-04
## 930   Sandra Erwin           traditional   452  716353 6.309738e-04
## 931     Jeff Foust          acknowledged   451 1573821 2.865637e-04
## 932     Jeff Foust               primary   451 1573821 2.865637e-04
## 933     Jeff Foust                summer   451 1573821 2.865637e-04
## 934   Sandra Erwin                flight   451  716353 6.295779e-04
## 935   Sandra Erwin           integration   451  716353 6.295779e-04
## 936     Jeff Foust               objects   450 1573821 2.859283e-04
## 937     Jeff Foust                 abort   449 1573821 2.852929e-04
## 938     Jeff Foust                apollo   449 1573821 2.852929e-04
## 939     Jeff Foust             smallsats   449 1573821 2.852929e-04
## 940     Jeff Foust            understand   449 1573821 2.852929e-04
## 941     Jeff Foust           experiments   448 1573821 2.846575e-04
## 942   Sandra Erwin                 field   448  716353 6.253900e-04
## 943   Sandra Erwin                   set   448  716353 6.253900e-04
## 944   Sandra Erwin                demand   447  716353 6.239940e-04
## 945   Sandra Erwin            management   447  716353 6.239940e-04
## 946   Sandra Erwin         organizations   447  716353 6.239940e-04
## 947     Jeff Foust             vehicle’s   445 1573821 2.827513e-04
## 948     Jeff Foust                   leo   444 1573821 2.821159e-04
## 949     Jeff Foust              suffered   444 1573821 2.821159e-04
## 950   Sandra Erwin                   day   444  716353 6.198062e-04
## 951   Sandra Erwin                   due   444  716353 6.198062e-04
## 952   Sandra Erwin                   fly   444  716353 6.198062e-04
## 953     Jeff Foust              document   443 1573821 2.814805e-04
## 954   Sandra Erwin               growing   443  716353 6.184102e-04
## 955     Jeff Foust                levels   442 1573821 2.808452e-04
## 956     Jeff Foust            emphasized   441 1573821 2.802098e-04
## 957     Jeff Foust             scientist   441 1573821 2.802098e-04
## 958     Jeff Foust                vulcan   441 1573821 2.802098e-04
## 959   Sandra Erwin              tactical   441  716353 6.156183e-04
## 960   Sandra Erwin               focused   440  716353 6.142223e-04
## 961     Jeff Foust                oxygen   439 1573821 2.789390e-04
## 962     Jeff Foust              allowing   438 1573821 2.783036e-04
## 963     Jeff Foust          architecture   437 1573821 2.776682e-04
## 964     Jeff Foust                 dream   437 1573821 2.776682e-04
## 965     Jeff Foust               samples   436 1573821 2.770328e-04
## 966     Jeff Foust                sierra   436 1573821 2.770328e-04
## 967   Sandra Erwin                falcon   436  716353 6.086385e-04
## 968   Sandra Erwin                sensor   436  716353 6.086385e-04
## 969     Jeff Foust               modules   435 1573821 2.763974e-04
## 970     Jeff Foust        constellations   434 1573821 2.757620e-04
## 971     Jeff Foust                 south   434 1573821 2.757620e-04
## 972   Sandra Erwin             challenge   434  716353 6.058466e-04
## 973     Jeff Foust            considered   433 1573821 2.751266e-04
## 974     Jeff Foust            deployment   433 1573821 2.751266e-04
## 975     Jeff Foust             extension   433 1573821 2.751266e-04
## 976     Jeff Foust              multiple   432 1573821 2.744912e-04
## 977     Jeff Foust                  port   432 1573821 2.744912e-04
## 978     Jeff Foust               carried   431 1573821 2.738558e-04
## 979     Jeff Foust             published   431 1573821 2.738558e-04
## 980     Jeff Foust            ultimately   431 1573821 2.738558e-04
## 981   Sandra Erwin             company’s   431  716353 6.016587e-04
## 982   Sandra Erwin               tranche   431  716353 6.016587e-04
## 983     Jeff Foust                 means   430 1573821 2.732204e-04
## 984     Jeff Foust                person   430 1573821 2.732204e-04
## 985   Sandra Erwin              designed   430  716353 6.002627e-04
## 986     Jeff Foust                  demo   429 1573821 2.725850e-04
## 987     Jeff Foust              elements   429 1573821 2.725850e-04
## 988   Sandra Erwin           environment   429  716353 5.988668e-04
## 989     Jeff Foust              assembly   428 1573821 2.719496e-04
## 990     Jeff Foust                lifted   428 1573821 2.719496e-04
## 991     Jeff Foust                   job   427 1573821 2.713142e-04
## 992   Sandra Erwin             executive   427  716353 5.960748e-04
## 993     Jeff Foust         geostationary   426 1573821 2.706788e-04
## 994     Jeff Foust              training   426 1573821 2.706788e-04
## 995   Sandra Erwin                 money   426  716353 5.946789e-04
## 996     Jeff Foust             institute   425 1573821 2.700434e-04
## 997     Jeff Foust                  mass   425 1573821 2.700434e-04
## 998     Jeff Foust               powered   425 1573821 2.700434e-04
## 999   Sandra Erwin        reconnaissance   425  716353 5.932829e-04
## 1000    Jeff Foust                 bills   424 1573821 2.694080e-04
## 1001    Jeff Foust                   bit   424 1573821 2.694080e-04
## 1002    Jeff Foust                 scale   424 1573821 2.694080e-04
## 1003  Sandra Erwin           significant   424  716353 5.918870e-04
## 1004    Jeff Foust             difficult   423 1573821 2.687726e-04
## 1005  Sandra Erwin                 award   423  716353 5.904910e-04
## 1006  Sandra Erwin                 stage   423  716353 5.904910e-04
## 1007    Jeff Foust            commission   422 1573821 2.681372e-04
## 1008    Jeff Foust             disclosed   422 1573821 2.681372e-04
## 1009    Jeff Foust                formal   422 1573821 2.681372e-04
## 1010    Jeff Foust                 james   422 1573821 2.681372e-04
## 1011    Jeff Foust           astronomers   421 1573821 2.675018e-04
## 1012    Jeff Foust                    em   421 1573821 2.675018e-04
## 1013    Jeff Foust             secretary   421 1573821 2.675018e-04
## 1014  Sandra Erwin             personnel   420  716353 5.863031e-04
## 1015    Jeff Foust                 prime   419 1573821 2.662310e-04
## 1016    Jeff Foust                sought   419 1573821 2.662310e-04
## 1017    Jeff Foust                  held   418 1573821 2.655956e-04
## 1018    Jeff Foust            laboratory   418 1573821 2.655956e-04
## 1019  Sandra Erwin              includes   418  716353 5.835112e-04
## 1020    Jeff Foust               conduct   417 1573821 2.649602e-04
## 1021    Jeff Foust              transfer   417 1573821 2.649602e-04
## 1022  Sandra Erwin                 atlas   417  716353 5.821152e-04
## 1023    Jeff Foust               america   416 1573821 2.643249e-04
## 1024    Jeff Foust                   cut   416 1573821 2.643249e-04
## 1025    Jeff Foust       recommendations   416 1573821 2.643249e-04
## 1026  Sandra Erwin             advantage   416  716353 5.807193e-04
## 1027    Jeff Foust           alternative   415 1573821 2.636895e-04
## 1028    Jeff Foust             milestone   415 1573821 2.636895e-04
## 1029    Jeff Foust             secondary   415 1573821 2.636895e-04
## 1030    Jeff Foust                 won’t   414 1573821 2.630541e-04
## 1031  Sandra Erwin              increase   414  716353 5.779274e-04
## 1032    Jeff Foust                  left   413 1573821 2.624187e-04
## 1033  Sandra Erwin              chairman   413  716353 5.765314e-04
## 1034  Sandra Erwin                  ndaa   413  716353 5.765314e-04
## 1035  Sandra Erwin                orbits   413  716353 5.765314e-04
## 1036    Jeff Foust             projected   412 1573821 2.617833e-04
## 1037    Jeff Foust               reentry   412 1573821 2.617833e-04
## 1038  Sandra Erwin         congressional   411  716353 5.737395e-04
## 1039  Sandra Erwin                 corps   411  716353 5.737395e-04
## 1040    Jeff Foust              reusable   410 1573821 2.605125e-04
## 1041    Jeff Foust              shutdown   410 1573821 2.605125e-04
## 1042  Sandra Erwin              schedule   410  716353 5.723435e-04
## 1043    Jeff Foust               chinese   408 1573821 2.592417e-04
## 1044    Jeff Foust            navigation   408 1573821 2.592417e-04
## 1045  Sandra Erwin                 built   408  716353 5.695516e-04
## 1046  Sandra Erwin                 darpa   408  716353 5.695516e-04
## 1047  Sandra Erwin            hypersonic   408  716353 5.695516e-04
## 1048  Sandra Erwin                 we’ve   408  716353 5.695516e-04
## 1049    Jeff Foust                 bezos   407 1573821 2.586063e-04
## 1050    Jeff Foust             symposium   407 1573821 2.586063e-04
## 1051  Sandra Erwin         authorization   406  716353 5.667597e-04
## 1052  Sandra Erwin          surveillance   405  716353 5.653637e-04
## 1053    Jeff Foust                adding   404 1573821 2.567001e-04
## 1054    Jeff Foust                 calls   404 1573821 2.567001e-04
## 1055    Jeff Foust                 reach   404 1573821 2.567001e-04
## 1056  Sandra Erwin                coming   404  716353 5.639678e-04
## 1057  Sandra Erwin                effort   404  716353 5.639678e-04
## 1058    Jeff Foust               revised   403 1573821 2.560647e-04
## 1059    Jeff Foust                static   403 1573821 2.560647e-04
## 1060    Jeff Foust                 makes   402 1573821 2.554293e-04
## 1061  Sandra Erwin                  past   402  716353 5.611758e-04
## 1062  Sandra Erwin                review   402  716353 5.611758e-04
## 1063  Sandra Erwin                  term   402  716353 5.611758e-04
## 1064    Jeff Foust               session   401 1573821 2.547939e-04
## 1065    Jeff Foust                 pilot   400 1573821 2.541585e-04
## 1066  Sandra Erwin                assets   400  716353 5.583839e-04
## 1067    Jeff Foust               achieve   399 1573821 2.535231e-04
## 1068  Sandra Erwin               rockets   399  716353 5.569880e-04
## 1069    Jeff Foust             remaining   398 1573821 2.528877e-04
## 1070    Jeff Foust                  vote   398 1573821 2.528877e-04
## 1071  Sandra Erwin                  meet   398  716353 5.555920e-04
## 1072    Jeff Foust            atmosphere   397 1573821 2.522523e-04
## 1073  Sandra Erwin              concerns   397  716353 5.541960e-04
## 1074    Jeff Foust             station’s   396 1573821 2.516169e-04
## 1075    Jeff Foust                 video   396 1573821 2.516169e-04
## 1076  Sandra Erwin               ability   396  716353 5.528001e-04
## 1077    Jeff Foust              accident   395 1573821 2.509815e-04
## 1078  Sandra Erwin                  july   395  716353 5.514041e-04
## 1079    Jeff Foust            nomination   394 1573821 2.503461e-04
## 1080    Jeff Foust                  seek   394 1573821 2.503461e-04
## 1081  Sandra Erwin                allies   394  716353 5.500082e-04
## 1082    Jeff Foust                 delta   393 1573821 2.497107e-04
## 1083    Jeff Foust               johnson   393 1573821 2.497107e-04
## 1084  Sandra Erwin               objects   393  716353 5.486122e-04
## 1085  Sandra Erwin               sources   393  716353 5.486122e-04
## 1086    Jeff Foust          partnerships   392 1573821 2.490753e-04
## 1087  Sandra Erwin            california   392  716353 5.472162e-04
## 1088  Sandra Erwin            transition   392  716353 5.472162e-04
## 1089    Jeff Foust                   crs   391 1573821 2.484399e-04
## 1090  Sandra Erwin              infrared   391  716353 5.458203e-04
## 1091  Sandra Erwin                   war   391  716353 5.458203e-04
## 1092    Jeff Foust              pressure   390 1573821 2.478045e-04
## 1093    Jeff Foust                  unit   390 1573821 2.478045e-04
## 1094  Sandra Erwin               planned   390  716353 5.444243e-04
## 1095    Jeff Foust               factory   389 1573821 2.471692e-04
## 1096  Sandra Erwin                 users   389  716353 5.430284e-04
## 1097    Jeff Foust              infrared   388 1573821 2.465338e-04
## 1098    Jeff Foust               partner   388 1573821 2.465338e-04
## 1099    Jeff Foust             selection   388 1573821 2.465338e-04
## 1100    Jeff Foust                  talk   388 1573821 2.465338e-04
## 1101  Sandra Erwin            understand   388  716353 5.416324e-04
## 1102    Jeff Foust               collect   387 1573821 2.458984e-04
## 1103    Jeff Foust             continues   387 1573821 2.458984e-04
## 1104  Sandra Erwin                faster   387  716353 5.402364e-04
## 1105  Sandra Erwin                 maxar   387  716353 5.402364e-04
## 1106    Jeff Foust                chaser   386 1573821 2.452630e-04
## 1107    Jeff Foust                couple   386 1573821 2.452630e-04
## 1108    Jeff Foust             discussed   386 1573821 2.452630e-04
## 1109    Jeff Foust           integration   386 1573821 2.452630e-04
## 1110    Jeff Foust              military   386 1573821 2.452630e-04
## 1111    Jeff Foust               nations   386 1573821 2.452630e-04
## 1112  Sandra Erwin            pentagon’s   386  716353 5.388405e-04
## 1113  Sandra Erwin             reporters   386  716353 5.388405e-04
## 1114  Sandra Erwin                moving   385  716353 5.374445e-04
## 1115    Jeff Foust              exchange   384 1573821 2.439922e-04
## 1116    Jeff Foust                french   384 1573821 2.439922e-04
## 1117    Jeff Foust         organizations   384 1573821 2.439922e-04
## 1118    Jeff Foust              identify   383 1573821 2.433568e-04
## 1119    Jeff Foust               quickly   383 1573821 2.433568e-04
## 1120  Sandra Erwin             projected   383  716353 5.346526e-04
## 1121    Jeff Foust              language   382 1573821 2.427214e-04
## 1122    Jeff Foust                mexico   382 1573821 2.427214e-04
## 1123    Jeff Foust                pretty   382 1573821 2.427214e-04
## 1124    Jeff Foust                   u.k   382 1573821 2.427214e-04
## 1125  Sandra Erwin              capacity   382  716353 5.332566e-04
## 1126  Sandra Erwin               weather   382  716353 5.332566e-04
## 1127    Jeff Foust                  elon   381 1573821 2.420860e-04
## 1128    Jeff Foust                  ship   381 1573821 2.420860e-04
## 1129  Sandra Erwin              approach   381  716353 5.318607e-04
## 1130  Sandra Erwin                vulcan   381  716353 5.318607e-04
## 1131    Jeff Foust              deployed   380 1573821 2.414506e-04
## 1132    Jeff Foust          gerstenmaier   380 1573821 2.414506e-04
## 1133    Jeff Foust              question   380 1573821 2.414506e-04
## 1134  Sandra Erwin           investments   380  716353 5.304647e-04
## 1135    Jeff Foust                 chair   379 1573821 2.408152e-04
## 1136    Jeff Foust                  lost   379 1573821 2.408152e-04
## 1137    Jeff Foust             strategic   379 1573821 2.408152e-04
## 1138  Sandra Erwin                  goal   379  716353 5.290688e-04
## 1139  Sandra Erwin                 ready   379  716353 5.290688e-04
## 1140    Jeff Foust                damage   378 1573821 2.401798e-04
## 1141    Jeff Foust             licensing   378 1573821 2.401798e-04
## 1142    Jeff Foust               network   378 1573821 2.401798e-04
## 1143    Jeff Foust                  wide   378 1573821 2.401798e-04
## 1144    Jeff Foust               docking   377 1573821 2.395444e-04
## 1145    Jeff Foust                filing   377 1573821 2.395444e-04
## 1146    Jeff Foust           launcherone   377 1573821 2.395444e-04
## 1147    Jeff Foust                 radio   377 1573821 2.395444e-04
## 1148    Jeff Foust         certification   376 1573821 2.389090e-04
## 1149  Sandra Erwin             proposals   376  716353 5.248809e-04
## 1150    Jeff Foust                   fcc   375 1573821 2.382736e-04
## 1151    Jeff Foust                  pace   375 1573821 2.382736e-04
## 1152    Jeff Foust                acting   374 1573821 2.376382e-04
## 1153    Jeff Foust                  jeff   374 1573821 2.376382e-04
## 1154    Jeff Foust                 seats   374 1573821 2.376382e-04
## 1155  Sandra Erwin             assistant   374  716353 5.220890e-04
## 1156  Sandra Erwin              networks   374  716353 5.220890e-04
## 1157    Jeff Foust                 glenn   373 1573821 2.370028e-04
## 1158    Jeff Foust              maneuver   373 1573821 2.370028e-04
## 1159    Jeff Foust                  send   373 1573821 2.370028e-04
## 1160  Sandra Erwin                 bring   373  716353 5.206930e-04
## 1161  Sandra Erwin               created   373  716353 5.206930e-04
## 1162  Sandra Erwin            military’s   373  716353 5.206930e-04
## 1163    Jeff Foust             broadband   372 1573821 2.363674e-04
## 1164    Jeff Foust              offering   372 1573821 2.363674e-04
## 1165  Sandra Erwin                   top   372  716353 5.192971e-04
## 1166  Sandra Erwin               vendors   372  716353 5.192971e-04
## 1167  Sandra Erwin              civilian   371  716353 5.179011e-04
## 1168  Sandra Erwin                 costs   371  716353 5.179011e-04
## 1169  Sandra Erwin                  idea   371  716353 5.179011e-04
## 1170  Sandra Erwin                   wgs   371  716353 5.179011e-04
## 1171    Jeff Foust            executives   370 1573821 2.350966e-04
## 1172    Jeff Foust                reason   370 1573821 2.350966e-04
## 1173    Jeff Foust              requires   370 1573821 2.350966e-04
## 1174  Sandra Erwin                   led   370  716353 5.165051e-04
## 1175  Sandra Erwin               officer   369  716353 5.151092e-04
## 1176  Sandra Erwin           responsible   369  716353 5.151092e-04
## 1177  Sandra Erwin             scheduled   369  716353 5.151092e-04
## 1178    Jeff Foust                affect   368 1573821 2.338258e-04
## 1179    Jeff Foust           established   368 1573821 2.338258e-04
## 1180    Jeff Foust              concepts   367 1573821 2.331904e-04
## 1181    Jeff Foust                 filed   367 1573821 2.331904e-04
## 1182    Jeff Foust            identified   367 1573821 2.331904e-04
## 1183    Jeff Foust            innovation   367 1573821 2.331904e-04
## 1184    Jeff Foust                   win   366 1573821 2.325550e-04
## 1185    Jeff Foust                 can’t   365 1573821 2.319196e-04
## 1186    Jeff Foust           controllers   365 1573821 2.319196e-04
## 1187    Jeff Foust                noting   365 1573821 2.319196e-04
## 1188    Jeff Foust               sources   365 1573821 2.319196e-04
## 1189  Sandra Erwin                    lt   365  716353 5.095253e-04
## 1190  Sandra Erwin                 rapid   365  716353 5.095253e-04
## 1191    Jeff Foust              canadian   364 1573821 2.312842e-04
## 1192    Jeff Foust                 staff   364 1573821 2.312842e-04
## 1193  Sandra Erwin             lawmakers   364  716353 5.081294e-04
## 1194    Jeff Foust              deadline   363 1573821 2.306488e-04
## 1195    Jeff Foust                 share   363 1573821 2.306488e-04
## 1196    Jeff Foust                source   363 1573821 2.306488e-04
## 1197  Sandra Erwin            additional   363  716353 5.067334e-04
## 1198  Sandra Erwin                source   363  716353 5.067334e-04
## 1199    Jeff Foust               capable   362 1573821 2.300135e-04
## 1200    Jeff Foust             confident   361 1573821 2.293781e-04
## 1201    Jeff Foust               produce   361 1573821 2.293781e-04
## 1202    Jeff Foust                 smith   361 1573821 2.293781e-04
## 1203  Sandra Erwin               require   361  716353 5.039415e-04
## 1204    Jeff Foust                  band   360 1573821 2.287427e-04
## 1205    Jeff Foust                closed   360 1573821 2.287427e-04
## 1206    Jeff Foust           immediately   360 1573821 2.287427e-04
## 1207    Jeff Foust           legislation   360 1573821 2.287427e-04
## 1208    Jeff Foust                 radar   360 1573821 2.287427e-04
## 1209  Sandra Erwin            investment   360  716353 5.025455e-04
## 1210    Jeff Foust                  vega   359 1573821 2.281073e-04
## 1211  Sandra Erwin                signed   359  716353 5.011496e-04
## 1212    Jeff Foust               aerojet   358 1573821 2.274719e-04
## 1213    Jeff Foust                 block   358 1573821 2.274719e-04
## 1214    Jeff Foust               clipper   358 1573821 2.274719e-04
## 1215    Jeff Foust              ventures   358 1573821 2.274719e-04
## 1216    Jeff Foust              hydrogen   357 1573821 2.268365e-04
## 1217    Jeff Foust                 rules   357 1573821 2.268365e-04
## 1218    Jeff Foust                update   357 1573821 2.268365e-04
## 1219    Jeff Foust               created   356 1573821 2.262011e-04
## 1220    Jeff Foust                extend   356 1573821 2.262011e-04
## 1221    Jeff Foust                 steps   356 1573821 2.262011e-04
## 1222  Sandra Erwin               deliver   356  716353 4.969617e-04
## 1223  Sandra Erwin              released   356  716353 4.969617e-04
## 1224  Sandra Erwin                threat   356  716353 4.969617e-04
## 1225    Jeff Foust                bolden   355 1573821 2.255657e-04
## 1226    Jeff Foust                 pence   355 1573821 2.255657e-04
## 1227    Jeff Foust               results   355 1573821 2.255657e-04
## 1228    Jeff Foust                  webb   354 1573821 2.249303e-04
## 1229  Sandra Erwin              aircraft   354  716353 4.941698e-04
## 1230  Sandra Erwin              official   354  716353 4.941698e-04
## 1231  Sandra Erwin                 radar   354  716353 4.941698e-04
## 1232    Jeff Foust           directorate   353 1573821 2.242949e-04
## 1233    Jeff Foust           potentially   353 1573821 2.242949e-04
## 1234    Jeff Foust                  stay   353 1573821 2.242949e-04
## 1235    Jeff Foust                tested   353 1573821 2.242949e-04
## 1236  Sandra Erwin                   dec   353  716353 4.927738e-04
## 1237  Sandra Erwin               testing   353  716353 4.927738e-04
## 1238  Sandra Erwin              alliance   352  716353 4.913779e-04
## 1239  Sandra Erwin             establish   352  716353 4.913779e-04
## 1240    Jeff Foust             astronomy   351 1573821 2.230241e-04
## 1241  Sandra Erwin                 final   351  716353 4.899819e-04
## 1242  Sandra Erwin              training   351  716353 4.899819e-04
## 1243    Jeff Foust             establish   350 1573821 2.223887e-04
## 1244  Sandra Erwin         demonstration   350  716353 4.885859e-04
## 1245    Jeff Foust              approval   349 1573821 2.217533e-04
## 1246    Jeff Foust               comment   349 1573821 2.217533e-04
## 1247    Jeff Foust                   gao   349 1573821 2.217533e-04
## 1248    Jeff Foust                 spent   349 1573821 2.217533e-04
## 1249  Sandra Erwin               they’re   349  716353 4.871900e-04
## 1250    Jeff Foust                 goals   348 1573821 2.211179e-04
## 1251  Sandra Erwin                  anti   348  716353 4.857940e-04
## 1252  Sandra Erwin                   won   348  716353 4.857940e-04
## 1253    Jeff Foust               concern   347 1573821 2.204825e-04
## 1254    Jeff Foust               deliver   347 1573821 2.204825e-04
## 1255    Jeff Foust              momentus   347 1573821 2.204825e-04
## 1256  Sandra Erwin            propulsion   347  716353 4.843981e-04
## 1257    Jeff Foust            approaches   346 1573821 2.198471e-04
## 1258    Jeff Foust           corporation   346 1573821 2.198471e-04
## 1259    Jeff Foust                deploy   346 1573821 2.198471e-04
## 1260    Jeff Foust                vision   346 1573821 2.198471e-04
## 1261    Jeff Foust                wfirst   346 1573821 2.198471e-04
## 1262  Sandra Erwin                funded   346  716353 4.830021e-04
## 1263  Sandra Erwin         geostationary   346  716353 4.830021e-04
## 1264  Sandra Erwin              partners   346  716353 4.830021e-04
## 1265  Sandra Erwin                 smith   346  716353 4.830021e-04
## 1266    Jeff Foust               broader   345 1573821 2.192117e-04
## 1267    Jeff Foust               imagery   345 1573821 2.192117e-04
## 1268    Jeff Foust                 risks   345 1573821 2.192117e-04
## 1269    Jeff Foust               excited   344 1573821 2.185763e-04
## 1270    Jeff Foust            initiative   344 1573821 2.185763e-04
## 1271    Jeff Foust               reviews   344 1573821 2.185763e-04
## 1272    Jeff Foust                status   344 1573821 2.185763e-04
## 1273    Jeff Foust               tuesday   344 1573821 2.185763e-04
## 1274    Jeff Foust                warned   344 1573821 2.185763e-04
## 1275  Sandra Erwin               quickly   344  716353 4.802102e-04
## 1276  Sandra Erwin                  team   344  716353 4.802102e-04
## 1277    Jeff Foust                 spend   343 1573821 2.179409e-04
## 1278  Sandra Erwin                   ago   343  716353 4.788142e-04
## 1279  Sandra Erwin            challenges   343  716353 4.788142e-04
## 1280  Sandra Erwin                public   343  716353 4.788142e-04
## 1281  Sandra Erwin                  role   343  716353 4.788142e-04
## 1282    Jeff Foust                chance   342 1573821 2.173055e-04
## 1283    Jeff Foust              earnings   342 1573821 2.173055e-04
## 1284    Jeff Foust                    ms   342 1573821 2.173055e-04
## 1285  Sandra Erwin             resources   342  716353 4.774183e-04
## 1286  Sandra Erwin              tournear   342  716353 4.774183e-04
## 1287    Jeff Foust               improve   341 1573821 2.166701e-04
## 1288    Jeff Foust                  spac   341 1573821 2.166701e-04
## 1289    Jeff Foust                  task   341 1573821 2.166701e-04
## 1290    Jeff Foust              thursday   341 1573821 2.166701e-04
## 1291  Sandra Erwin              proposed   341  716353 4.760223e-04
## 1292  Sandra Erwin                 range   341  716353 4.760223e-04
## 1293    Jeff Foust                effect   340 1573821 2.160347e-04
## 1294    Jeff Foust                  rule   340 1573821 2.160347e-04
## 1295    Jeff Foust            vandenberg   340 1573821 2.160347e-04
## 1296  Sandra Erwin                deploy   340  716353 4.746263e-04
## 1297  Sandra Erwin                figure   340  716353 4.746263e-04
## 1298  Sandra Erwin                   geo   340  716353 4.746263e-04
## 1299    Jeff Foust            increasing   339 1573821 2.153993e-04
## 1300    Jeff Foust            confidence   338 1573821 2.147639e-04
## 1301    Jeff Foust                  hold   338 1573821 2.147639e-04
## 1302  Sandra Erwin              analysis   338  716353 4.718344e-04
## 1303    Jeff Foust                indian   337 1573821 2.141285e-04
## 1304    Jeff Foust                merger   337 1573821 2.141285e-04
## 1305  Sandra Erwin              transfer   337  716353 4.704385e-04
## 1306    Jeff Foust                agreed   336 1573821 2.134931e-04
## 1307    Jeff Foust                factor   336 1573821 2.134931e-04
## 1308    Jeff Foust                   gps   336 1573821 2.134931e-04
## 1309    Jeff Foust            integrated   336 1573821 2.134931e-04
## 1310    Jeff Foust           responsible   336 1573821 2.134931e-04
## 1311    Jeff Foust             returning   336 1573821 2.134931e-04
## 1312    Jeff Foust               tweeted   336 1573821 2.134931e-04
## 1313    Jeff Foust                vector   336 1573821 2.134931e-04
## 1314  Sandra Erwin            geospatial   336  716353 4.690425e-04
## 1315    Jeff Foust              directly   335 1573821 2.128578e-04
## 1316    Jeff Foust                 green   335 1573821 2.128578e-04
## 1317    Jeff Foust             reporters   335 1573821 2.128578e-04
## 1318  Sandra Erwin                  deal   335  716353 4.676465e-04
## 1319  Sandra Erwin                larger   335  716353 4.676465e-04
## 1320  Sandra Erwin                 delta   334  716353 4.662506e-04
## 1321  Sandra Erwin           opportunity   334  716353 4.662506e-04
## 1322    Jeff Foust                 sites   333 1573821 2.115870e-04
## 1323    Jeff Foust             zurbuchen   333 1573821 2.115870e-04
## 1324  Sandra Erwin            classified   333  716353 4.648546e-04
## 1325  Sandra Erwin                issues   333  716353 4.648546e-04
## 1326    Jeff Foust         significantly   332 1573821 2.109516e-04
## 1327  Sandra Erwin                 funds   332  716353 4.634587e-04
## 1328  Sandra Erwin              raytheon   332  716353 4.634587e-04
## 1329    Jeff Foust             concerned   331 1573821 2.103162e-04
## 1330    Jeff Foust             wednesday   331 1573821 2.103162e-04
## 1331  Sandra Erwin         manufacturing   331  716353 4.620627e-04
## 1332    Jeff Foust              colorado   330 1573821 2.096808e-04
## 1333    Jeff Foust               dollars   330 1573821 2.096808e-04
## 1334    Jeff Foust                monday   330 1573821 2.096808e-04
## 1335    Jeff Foust                  real   330 1573821 2.096808e-04
## 1336    Jeff Foust                  rest   330 1573821 2.096808e-04
## 1337  Sandra Erwin               options   330  716353 4.606667e-04
## 1338  Sandra Erwin              recently   330  716353 4.606667e-04
## 1339    Jeff Foust               advance   329 1573821 2.090454e-04
## 1340    Jeff Foust                  seat   329 1573821 2.090454e-04
## 1341  Sandra Erwin                 event   329  716353 4.592708e-04
## 1342    Jeff Foust              estimate   328 1573821 2.084100e-04
## 1343    Jeff Foust              evidence   328 1573821 2.084100e-04
## 1344    Jeff Foust                friday   328 1573821 2.084100e-04
## 1345    Jeff Foust                offers   328 1573821 2.084100e-04
## 1346    Jeff Foust             postponed   328 1573821 2.084100e-04
## 1347    Jeff Foust            priorities   328 1573821 2.084100e-04
## 1348    Jeff Foust                 sales   328 1573821 2.084100e-04
## 1349  Sandra Erwin               started   328  716353 4.578748e-04
## 1350    Jeff Foust                    ax   327 1573821 2.077746e-04
## 1351    Jeff Foust               replace   327 1573821 2.077746e-04
## 1352  Sandra Erwin           established   327  716353 4.564789e-04
## 1353    Jeff Foust                 coast   326 1573821 2.071392e-04
## 1354    Jeff Foust            completing   326 1573821 2.071392e-04
## 1355    Jeff Foust             parachute   326 1573821 2.071392e-04
## 1356  Sandra Erwin                 hyten   326  716353 4.550829e-04
## 1357  Sandra Erwin               percent   326  716353 4.550829e-04
## 1358  Sandra Erwin              received   326  716353 4.550829e-04
## 1359    Jeff Foust           atmospheric   325 1573821 2.065038e-04
## 1360  Sandra Erwin                 level   325  716353 4.536869e-04
## 1361    Jeff Foust           arianespace   324 1573821 2.058684e-04
## 1362    Jeff Foust             providers   323 1573821 2.052330e-04
## 1363  Sandra Erwin             solutions   323  716353 4.508950e-04
## 1364    Jeff Foust              electric   322 1573821 2.045976e-04
## 1365    Jeff Foust            trajectory   322 1573821 2.045976e-04
## 1366  Sandra Erwin        undersecretary   322  716353 4.494991e-04
## 1367    Jeff Foust                record   321 1573821 2.039622e-04
## 1368  Sandra Erwin                 can’t   321  716353 4.481031e-04
## 1369  Sandra Erwin              spending   321  716353 4.481031e-04
## 1370  Sandra Erwin                supply   321  716353 4.481031e-04
## 1371    Jeff Foust                 2020s   320 1573821 2.033268e-04
## 1372    Jeff Foust                 avoid   320 1573821 2.033268e-04
## 1373    Jeff Foust            eventually   320 1573821 2.033268e-04
## 1374    Jeff Foust               largest   320 1573821 2.033268e-04
## 1375    Jeff Foust            relativity   320 1573821 2.033268e-04
## 1376    Jeff Foust                result   320 1573821 2.033268e-04
## 1377  Sandra Erwin              l3harris   320  716353 4.467071e-04
## 1378    Jeff Foust                annual   319 1573821 2.026914e-04
## 1379    Jeff Foust                 draft   318 1573821 2.020560e-04
## 1380    Jeff Foust                 steve   318 1573821 2.020560e-04
## 1381  Sandra Erwin                rogers   318  716353 4.439152e-04
## 1382  Sandra Erwin                 roper   318  716353 4.439152e-04
## 1383    Jeff Foust              duration   317 1573821 2.014206e-04
## 1384    Jeff Foust                linked   317 1573821 2.014206e-04
## 1385  Sandra Erwin             technical   317  716353 4.425193e-04
## 1386    Jeff Foust                  form   316 1573821 2.007852e-04
## 1387    Jeff Foust                   geo   316 1573821 2.007852e-04
## 1388    Jeff Foust                 model   316 1573821 2.007852e-04
## 1389    Jeff Foust                mojave   316 1573821 2.007852e-04
## 1390    Jeff Foust                 outer   316 1573821 2.007852e-04
## 1391    Jeff Foust                  suit   316 1573821 2.007852e-04
## 1392  Sandra Erwin                 means   316  716353 4.411233e-04
## 1393  Sandra Erwin               station   316  716353 4.411233e-04
## 1394    Jeff Foust            agreements   315 1573821 2.001498e-04
## 1395    Jeff Foust            industries   315 1573821 2.001498e-04
## 1396  Sandra Erwin           adversaries   315  716353 4.397273e-04
## 1397  Sandra Erwin                  nssl   315  716353 4.397273e-04
## 1398  Sandra Erwin               sensing   315  716353 4.397273e-04
## 1399    Jeff Foust                 darpa   314 1573821 1.995144e-04
## 1400    Jeff Foust               element   314 1573821 1.995144e-04
## 1401    Jeff Foust              recovery   314 1573821 1.995144e-04
## 1402    Jeff Foust                energy   313 1573821 1.988790e-04
## 1403    Jeff Foust               running   312 1573821 1.982436e-04
## 1404    Jeff Foust             supported   312 1573821 1.982436e-04
## 1405    Jeff Foust          construction   311 1573821 1.976082e-04
## 1406    Jeff Foust                  path   311 1573821 1.976082e-04
## 1407    Jeff Foust               ranking   311 1573821 1.976082e-04
## 1408    Jeff Foust                   cst   310 1573821 1.969728e-04
## 1409    Jeff Foust               michael   310 1573821 1.969728e-04
## 1410    Jeff Foust            optimistic   310 1573821 1.969728e-04
## 1411    Jeff Foust                you’re   310 1573821 1.969728e-04
## 1412  Sandra Erwin                   aug   310  716353 4.327475e-04
## 1413  Sandra Erwin               signals   310  716353 4.327475e-04
## 1414  Sandra Erwin                taking   310  716353 4.327475e-04
## 1415    Jeff Foust             decisions   309 1573821 1.963374e-04
## 1416    Jeff Foust               proceed   309 1573821 1.963374e-04
## 1417    Jeff Foust               zealand   309 1573821 1.963374e-04
## 1418    Jeff Foust            astrobotic   308 1573821 1.957021e-04
## 1419    Jeff Foust             spacewalk   308 1573821 1.957021e-04
## 1420    Jeff Foust               british   307 1573821 1.950667e-04
## 1421    Jeff Foust                google   307 1573821 1.950667e-04
## 1422    Jeff Foust                  leak   307 1573821 1.950667e-04
## 1423    Jeff Foust              tracking   307 1573821 1.950667e-04
## 1424  Sandra Erwin                 bruno   307  716353 4.285597e-04
## 1425  Sandra Erwin               federal   307  716353 4.285597e-04
## 1426  Sandra Erwin             resilient   307  716353 4.285597e-04
## 1427    Jeff Foust               markets   306 1573821 1.944313e-04
## 1428    Jeff Foust           recommended   306 1573821 1.944313e-04
## 1429    Jeff Foust             submitted   306 1573821 1.944313e-04
## 1430  Sandra Erwin              provider   306  716353 4.271637e-04
## 1431    Jeff Foust             determine   305 1573821 1.937959e-04
## 1432    Jeff Foust                   oft   305 1573821 1.937959e-04
## 1433    Jeff Foust              spectrum   305 1573821 1.937959e-04
## 1434    Jeff Foust             transport   305 1573821 1.937959e-04
## 1435    Jeff Foust              maintain   304 1573821 1.931605e-04
## 1436    Jeff Foust             structure   304 1573821 1.931605e-04
## 1437  Sandra Erwin                  late   304  716353 4.243718e-04
## 1438  Sandra Erwin               digital   303  716353 4.229758e-04
## 1439  Sandra Erwin                 guard   303  716353 4.229758e-04
## 1440  Sandra Erwin                   i’m   303  716353 4.229758e-04
## 1441  Sandra Erwin               kendall   303  716353 4.229758e-04
## 1442  Sandra Erwin            responsive   303  716353 4.229758e-04
## 1443    Jeff Foust             advantage   302 1573821 1.918897e-04
## 1444    Jeff Foust             expressed   302 1573821 1.918897e-04
## 1445    Jeff Foust                   ice   302 1573821 1.918897e-04
## 1446    Jeff Foust              sciences   302 1573821 1.918897e-04
## 1447    Jeff Foust           sustainable   302 1573821 1.918897e-04
## 1448  Sandra Erwin             ballistic   302  716353 4.215799e-04
## 1449    Jeff Foust                 cited   301 1573821 1.912543e-04
## 1450    Jeff Foust                entire   301 1573821 1.912543e-04
## 1451    Jeff Foust                  grow   301 1573821 1.912543e-04
## 1452    Jeff Foust                  hall   301 1573821 1.912543e-04
## 1453  Sandra Erwin          acquisitions   301  716353 4.201839e-04
## 1454  Sandra Erwin          headquarters   301  716353 4.201839e-04
## 1455    Jeff Foust                   jpl   300 1573821 1.906189e-04
## 1456  Sandra Erwin              conflict   300  716353 4.187879e-04
## 1457  Sandra Erwin                 speed   300  716353 4.187879e-04
## 1458    Jeff Foust                landed   299 1573821 1.899835e-04
## 1459    Jeff Foust                  pass   299 1573821 1.899835e-04
## 1460  Sandra Erwin                  mike   299  716353 4.173920e-04
## 1461  Sandra Erwin                  navy   299  716353 4.173920e-04
## 1462    Jeff Foust                  sign   298 1573821 1.893481e-04
## 1463    Jeff Foust                 takes   298 1573821 1.893481e-04
## 1464  Sandra Erwin              specific   298  716353 4.159960e-04
## 1465    Jeff Foust               effects   297 1573821 1.887127e-04
## 1466    Jeff Foust                 named   297 1573821 1.887127e-04
## 1467    Jeff Foust                 spire   297 1573821 1.887127e-04
## 1468    Jeff Foust                spring   297 1573821 1.887127e-04
## 1469  Sandra Erwin               imaging   297  716353 4.146001e-04
## 1470  Sandra Erwin              products   297  716353 4.146001e-04
## 1471  Sandra Erwin              deployed   296  716353 4.132041e-04
## 1472  Sandra Erwin               replace   296  716353 4.132041e-04
## 1473    Jeff Foust                  cuts   295 1573821 1.874419e-04
## 1474    Jeff Foust                what’s   295 1573821 1.874419e-04
## 1475    Jeff Foust              compared   294 1573821 1.868065e-04
## 1476    Jeff Foust               decades   294 1573821 1.868065e-04
## 1477    Jeff Foust                 sofia   294 1573821 1.868065e-04
## 1478    Jeff Foust               wallops   294 1573821 1.868065e-04
## 1479    Jeff Foust               website   294 1573821 1.868065e-04
## 1480  Sandra Erwin            contractor   294  716353 4.104122e-04
## 1481  Sandra Erwin             equipment   294  716353 4.104122e-04
## 1482  Sandra Erwin            industrial   294  716353 4.104122e-04
## 1483  Sandra Erwin                secure   294  716353 4.104122e-04
## 1484    Jeff Foust                 flyby   293 1573821 1.861711e-04
## 1485    Jeff Foust                happen   293 1573821 1.861711e-04
## 1486    Jeff Foust                   pre   293 1573821 1.861711e-04
## 1487  Sandra Erwin           competitive   293  716353 4.090162e-04
## 1488  Sandra Erwin                 we’ll   293  716353 4.090162e-04
## 1489  Sandra Erwin             analytics   292  716353 4.076203e-04
## 1490  Sandra Erwin                  size   292  716353 4.076203e-04
## 1491    Jeff Foust               appears   291 1573821 1.849003e-04
## 1492    Jeff Foust              cislunar   291 1573821 1.849003e-04
## 1493    Jeff Foust                travel   291 1573821 1.849003e-04
## 1494  Sandra Erwin           competitors   291  716353 4.062243e-04
## 1495  Sandra Erwin                 sbirs   291  716353 4.062243e-04
## 1496    Jeff Foust               airport   290 1573821 1.842649e-04
## 1497    Jeff Foust             personnel   290 1573821 1.842649e-04
## 1498    Jeff Foust               startup   290 1573821 1.842649e-04
## 1499    Jeff Foust                supply   290 1573821 1.842649e-04
## 1500  Sandra Erwin                  sept   290  716353 4.048283e-04
## 1501  Sandra Erwin               version   290  716353 4.048283e-04
## 1502    Jeff Foust            experiment   289 1573821 1.836295e-04
## 1503    Jeff Foust              launcher   289 1573821 1.836295e-04
## 1504    Jeff Foust                medium   289 1573821 1.836295e-04
## 1505    Jeff Foust                thrust   289 1573821 1.836295e-04
## 1506  Sandra Erwin                   col   288  716353 4.020364e-04
## 1507  Sandra Erwin         opportunities   288  716353 4.020364e-04
## 1508    Jeff Foust             authority   287 1573821 1.823587e-04
## 1509  Sandra Erwin              position   287  716353 4.006405e-04
## 1510    Jeff Foust                  firm   286 1573821 1.817233e-04
## 1511    Jeff Foust                  home   286 1573821 1.817233e-04
## 1512    Jeff Foust          spokesperson   286 1573821 1.817233e-04
## 1513    Jeff Foust               accords   285 1573821 1.810879e-04
## 1514    Jeff Foust             asteroids   285 1573821 1.810879e-04
## 1515    Jeff Foust                  list   285 1573821 1.810879e-04
## 1516    Jeff Foust           observation   285 1573821 1.810879e-04
## 1517    Jeff Foust              studying   285 1573821 1.810879e-04
## 1518    Jeff Foust              virginia   285 1573821 1.810879e-04
## 1519  Sandra Erwin               decades   285  716353 3.978485e-04
## 1520  Sandra Erwin           demonstrate   285  716353 3.978485e-04
## 1521  Sandra Erwin                   win   285  716353 3.978485e-04
## 1522    Jeff Foust             discovery   284 1573821 1.804525e-04
## 1523    Jeff Foust                  jaxa   284 1573821 1.804525e-04
## 1524    Jeff Foust                 speed   284 1573821 1.804525e-04
## 1525  Sandra Erwin               kennedy   284  716353 3.964526e-04
## 1526  Sandra Erwin                 units   284  716353 3.964526e-04
## 1527    Jeff Foust              economic   283 1573821 1.798171e-04
## 1528    Jeff Foust                 moved   283 1573821 1.798171e-04
## 1529  Sandra Erwin               concern   283  716353 3.950566e-04
## 1530  Sandra Erwin                remote   283  716353 3.950566e-04
## 1531  Sandra Erwin              response   283  716353 3.950566e-04
## 1532  Sandra Erwin                 short   283  716353 3.950566e-04
## 1533    Jeff Foust              boosters   282 1573821 1.791817e-04
## 1534    Jeff Foust                  burn   282 1573821 1.791817e-04
## 1535  Sandra Erwin                  days   282  716353 3.936607e-04
## 1536  Sandra Erwin            integrated   282  716353 3.936607e-04
## 1537  Sandra Erwin                  line   282  716353 3.936607e-04
## 1538  Sandra Erwin                single   282  716353 3.936607e-04
## 1539    Jeff Foust              announce   281 1573821 1.785464e-04
## 1540    Jeff Foust                 cover   281 1573821 1.785464e-04
## 1541    Jeff Foust            performing   281 1573821 1.785464e-04
## 1542    Jeff Foust                giving   280 1573821 1.779110e-04
## 1543    Jeff Foust             preparing   280 1573821 1.779110e-04
## 1544    Jeff Foust               reached   280 1573821 1.779110e-04
## 1545  Sandra Erwin               council   280  716353 3.908687e-04
## 1546  Sandra Erwin           performance   280  716353 3.908687e-04
## 1547    Jeff Foust             amendment   279 1573821 1.772756e-04
## 1548    Jeff Foust               article   279 1573821 1.772756e-04
## 1549    Jeff Foust               biggest   279 1573821 1.772756e-04
## 1550    Jeff Foust                  corp   279 1573821 1.772756e-04
## 1551    Jeff Foust                expand   279 1573821 1.772756e-04
## 1552    Jeff Foust             schedules   279 1573821 1.772756e-04
## 1553  Sandra Erwin                buying   279  716353 3.894728e-04
## 1554  Sandra Erwin               ukraine   279  716353 3.894728e-04
## 1555  Sandra Erwin              december   278  716353 3.880768e-04
## 1556  Sandra Erwin                 lower   278  716353 3.880768e-04
## 1557  Sandra Erwin                  step   278  716353 3.880768e-04
## 1558    Jeff Foust               ranging   277 1573821 1.760048e-04
## 1559    Jeff Foust                select   277 1573821 1.760048e-04
## 1560    Jeff Foust                airbus   276 1573821 1.753694e-04
## 1561    Jeff Foust               bigelow   276 1573821 1.753694e-04
## 1562    Jeff Foust             equipment   276 1573821 1.753694e-04
## 1563    Jeff Foust              thruster   276 1573821 1.753694e-04
## 1564    Jeff Foust            accelerate   275 1573821 1.747340e-04
## 1565    Jeff Foust             attention   275 1573821 1.747340e-04
## 1566    Jeff Foust               iridium   275 1573821 1.747340e-04
## 1567    Jeff Foust            objectives   275 1573821 1.747340e-04
## 1568  Sandra Erwin            experiment   275  716353 3.838889e-04
## 1569  Sandra Erwin                 share   275  716353 3.838889e-04
## 1570  Sandra Erwin                 solid   275  716353 3.838889e-04
## 1571    Jeff Foust                direct   274 1573821 1.740986e-04
## 1572    Jeff Foust               special   274 1573821 1.740986e-04
## 1573  Sandra Erwin               russian   274  716353 3.824930e-04
## 1574    Jeff Foust             lightfoot   273 1573821 1.734632e-04
## 1575    Jeff Foust                 night   273 1573821 1.734632e-04
## 1576  Sandra Erwin             broadband   273  716353 3.810970e-04
## 1577  Sandra Erwin              directed   273  716353 3.810970e-04
## 1578  Sandra Erwin                   oct   273  716353 3.810970e-04
## 1579    Jeff Foust               purpose   272 1573821 1.728278e-04
## 1580  Sandra Erwin               florida   272  716353 3.797011e-04
## 1581  Sandra Erwin        geosynchronous   272  716353 3.797011e-04
## 1582  Sandra Erwin             suppliers   272  716353 3.797011e-04
## 1583    Jeff Foust                 basis   271 1573821 1.721924e-04
## 1584    Jeff Foust             education   271 1573821 1.721924e-04
## 1585    Jeff Foust             effective   271 1573821 1.721924e-04
## 1586    Jeff Foust            helicopter   271 1573821 1.721924e-04
## 1587    Jeff Foust               receive   271 1573821 1.721924e-04
## 1588  Sandra Erwin               hearing   271  716353 3.783051e-04
## 1589  Sandra Erwin                  hill   271  716353 3.783051e-04
## 1590  Sandra Erwin           independent   271  716353 3.783051e-04
## 1591  Sandra Erwin             questions   271  716353 3.783051e-04
## 1592  Sandra Erwin               release   271  716353 3.783051e-04
## 1593  Sandra Erwin              requires   271  716353 3.783051e-04
## 1594  Sandra Erwin             servicing   271  716353 3.783051e-04
## 1595    Jeff Foust              atlantic   270 1573821 1.715570e-04
## 1596    Jeff Foust             countdown   270 1573821 1.715570e-04
## 1597    Jeff Foust                resume   270 1573821 1.715570e-04
## 1598    Jeff Foust                terran   270 1573821 1.715570e-04
## 1599  Sandra Erwin               engines   270  716353 3.769091e-04
## 1600  Sandra Erwin              language   270  716353 3.769091e-04
## 1601    Jeff Foust               anomaly   269 1573821 1.709216e-04
## 1602    Jeff Foust               closely   269 1573821 1.709216e-04
## 1603    Jeff Foust                middle   269 1573821 1.709216e-04
## 1604    Jeff Foust                   pay   269 1573821 1.709216e-04
## 1605    Jeff Foust              boeing’s   268 1573821 1.702862e-04
## 1606    Jeff Foust                 enter   268 1573821 1.702862e-04
## 1607    Jeff Foust                hosted   268 1573821 1.702862e-04
## 1608    Jeff Foust             increases   268 1573821 1.702862e-04
## 1609    Jeff Foust                   ses   268 1573821 1.702862e-04
## 1610    Jeff Foust                  town   268 1573821 1.702862e-04
## 1611    Jeff Foust                action   267 1573821 1.696508e-04
## 1612    Jeff Foust              presence   267 1573821 1.696508e-04
## 1613    Jeff Foust                 union   267 1573821 1.696508e-04
## 1614  Sandra Erwin             blackjack   267  716353 3.727213e-04
## 1615  Sandra Erwin           positioning   267  716353 3.727213e-04
## 1616  Sandra Erwin            previously   267  716353 3.727213e-04
## 1617  Sandra Erwin             symposium   267  716353 3.727213e-04
## 1618    Jeff Foust             mission’s   266 1573821 1.690154e-04
## 1619    Jeff Foust             readiness   266 1573821 1.690154e-04
## 1620    Jeff Foust         understanding   266 1573821 1.690154e-04
## 1621  Sandra Erwin                hosted   266  716353 3.713253e-04
## 1622    Jeff Foust                 deals   265 1573821 1.683800e-04
## 1623    Jeff Foust               express   265 1573821 1.683800e-04
## 1624    Jeff Foust            parachutes   265 1573821 1.683800e-04
## 1625  Sandra Erwin              required   265  716353 3.699294e-04
## 1626    Jeff Foust             awareness   264 1573821 1.677446e-04
## 1627    Jeff Foust              believes   264 1573821 1.677446e-04
## 1628    Jeff Foust                   bid   264 1573821 1.677446e-04
## 1629    Jeff Foust            designated   264 1573821 1.677446e-04
## 1630    Jeff Foust             initially   264 1573821 1.677446e-04
## 1631    Jeff Foust                 peter   264 1573821 1.677446e-04
## 1632    Jeff Foust               aspects   263 1573821 1.671092e-04
## 1633    Jeff Foust             financing   263 1573821 1.671092e-04
## 1634  Sandra Erwin               aerojet   263  716353 3.671374e-04
## 1635  Sandra Erwin               complex   263  716353 3.671374e-04
## 1636  Sandra Erwin               foreign   263  716353 3.671374e-04
## 1637    Jeff Foust              benefits   262 1573821 1.664738e-04
## 1638    Jeff Foust                   bus   262 1573821 1.664738e-04
## 1639    Jeff Foust                 super   262 1573821 1.664738e-04
## 1640    Jeff Foust                  bank   261 1573821 1.658384e-04
## 1641    Jeff Foust               command   261 1573821 1.658384e-04
## 1642    Jeff Foust                 court   261 1573821 1.658384e-04
## 1643    Jeff Foust               jupiter   261 1573821 1.658384e-04
## 1644    Jeff Foust               measure   261 1573821 1.658384e-04
## 1645    Jeff Foust               thermal   261 1573821 1.658384e-04
## 1646    Jeff Foust                thomas   261 1573821 1.658384e-04
## 1647    Jeff Foust           uncertainty   261 1573821 1.658384e-04
## 1648    Jeff Foust                  west   261 1573821 1.658384e-04
## 1649  Sandra Erwin             countries   261  716353 3.643455e-04
## 1650  Sandra Erwin                  fast   261  716353 3.643455e-04
## 1651  Sandra Erwin             frequency   261  716353 3.643455e-04
## 1652  Sandra Erwin                 price   261  716353 3.643455e-04
## 1653  Sandra Erwin              startups   261  716353 3.643455e-04
## 1654    Jeff Foust               history   260 1573821 1.652030e-04
## 1655    Jeff Foust                 japan   260 1573821 1.652030e-04
## 1656    Jeff Foust                pursue   260 1573821 1.652030e-04
## 1657    Jeff Foust            splashdown   260 1573821 1.652030e-04
## 1658  Sandra Erwin                  head   260  716353 3.629496e-04
## 1659    Jeff Foust                figure   259 1573821 1.645676e-04
## 1660    Jeff Foust           procurement   259 1573821 1.645676e-04
## 1661    Jeff Foust             prototype   259 1573821 1.645676e-04
## 1662  Sandra Erwin               capital   259  716353 3.615536e-04
## 1663    Jeff Foust                  heat   258 1573821 1.639322e-04
## 1664    Jeff Foust                   met   258 1573821 1.639322e-04
## 1665    Jeff Foust               putting   258 1573821 1.639322e-04
## 1666    Jeff Foust                topics   258 1573821 1.639322e-04
## 1667  Sandra Erwin               protect   258  716353 3.601576e-04
## 1668    Jeff Foust           application   257 1573821 1.632968e-04
## 1669    Jeff Foust                export   257 1573821 1.632968e-04
## 1670    Jeff Foust                intent   257 1573821 1.632968e-04
## 1671    Jeff Foust              combined   256 1573821 1.626614e-04
## 1672    Jeff Foust               insight   256 1573821 1.626614e-04
## 1673    Jeff Foust                served   256 1573821 1.626614e-04
## 1674    Jeff Foust                 users   256 1573821 1.626614e-04
## 1675    Jeff Foust                versus   256 1573821 1.626614e-04
## 1676  Sandra Erwin              provided   256  716353 3.573657e-04
## 1677  Sandra Erwin        reorganization   256  716353 3.573657e-04
## 1678    Jeff Foust            commitment   255 1573821 1.620260e-04
## 1679    Jeff Foust             elaborate   255 1573821 1.620260e-04
## 1680    Jeff Foust                 esa’s   255 1573821 1.620260e-04
## 1681    Jeff Foust                  mode   255 1573821 1.620260e-04
## 1682    Jeff Foust               reports   255 1573821 1.620260e-04
## 1683    Jeff Foust              returned   255 1573821 1.620260e-04
## 1684  Sandra Erwin              question   255  716353 3.559698e-04
## 1685  Sandra Erwin                   rep   255  716353 3.559698e-04
## 1686  Sandra Erwin          subcommittee   255  716353 3.559698e-04
## 1687    Jeff Foust           accommodate   254 1573821 1.613907e-04
## 1688    Jeff Foust               nuclear   254 1573821 1.613907e-04
## 1689    Jeff Foust                 seeks   254 1573821 1.613907e-04
## 1690  Sandra Erwin                  real   254  716353 3.545738e-04
## 1691  Sandra Erwin                  talk   254  716353 3.545738e-04
## 1692  Sandra Erwin               tuesday   254  716353 3.545738e-04
## 1693    Jeff Foust            completion   253 1573821 1.607553e-04
## 1694    Jeff Foust               remarks   253 1573821 1.607553e-04
## 1695  Sandra Erwin              analysts   253  716353 3.531778e-04
## 1696  Sandra Erwin                  hard   253  716353 3.531778e-04
## 1697  Sandra Erwin                   run   253  716353 3.531778e-04
## 1698    Jeff Foust         astronautical   252 1573821 1.601199e-04
## 1699    Jeff Foust                 biden   252 1573821 1.601199e-04
## 1700    Jeff Foust              changing   252 1573821 1.601199e-04
## 1701    Jeff Foust                 chris   252 1573821 1.601199e-04
## 1702    Jeff Foust            introduced   252 1573821 1.601199e-04
## 1703    Jeff Foust            milestones   252 1573821 1.601199e-04
## 1704    Jeff Foust              origin’s   252 1573821 1.601199e-04
## 1705    Jeff Foust             principal   252 1573821 1.601199e-04
## 1706  Sandra Erwin               details   252  716353 3.517819e-04
## 1707  Sandra Erwin              planning   252  716353 3.517819e-04
## 1708  Sandra Erwin               studies   252  716353 3.517819e-04
## 1709    Jeff Foust              incident   251 1573821 1.594845e-04
## 1710  Sandra Erwin               chinese   251  716353 3.503859e-04
## 1711  Sandra Erwin                   jan   251  716353 3.503859e-04
## 1712  Sandra Erwin                 makes   251  716353 3.503859e-04
## 1713  Sandra Erwin                  memo   251  716353 3.503859e-04
## 1714  Sandra Erwin                target   251  716353 3.503859e-04
## 1715    Jeff Foust                active   250 1573821 1.588491e-04
## 1716    Jeff Foust         appropriators   250 1573821 1.588491e-04
## 1717    Jeff Foust              creating   250 1573821 1.588491e-04
## 1718    Jeff Foust               economy   250 1573821 1.588491e-04
## 1719    Jeff Foust             estimates   250 1573821 1.588491e-04
## 1720    Jeff Foust                george   250 1573821 1.588491e-04
## 1721  Sandra Erwin               doesn’t   250  716353 3.489900e-04
## 1722  Sandra Erwin                medium   250  716353 3.489900e-04
## 1723  Sandra Erwin                 model   250  716353 3.489900e-04
## 1724    Jeff Foust          stratolaunch   249 1573821 1.582137e-04
## 1725  Sandra Erwin                   bus   249  716353 3.475940e-04
## 1726    Jeff Foust                assets   248 1573821 1.575783e-04
## 1727    Jeff Foust                    cr   248 1573821 1.575783e-04
## 1728    Jeff Foust              startups   248 1573821 1.575783e-04
## 1729    Jeff Foust                 stock   248 1573821 1.575783e-04
## 1730    Jeff Foust            sufficient   248 1573821 1.575783e-04
## 1731  Sandra Erwin                 cloud   248  716353 3.461980e-04
## 1732  Sandra Erwin               dollars   248  716353 3.461980e-04
## 1733    Jeff Foust                island   247 1573821 1.569429e-04
## 1734    Jeff Foust               martian   247 1573821 1.569429e-04
## 1735    Jeff Foust             mentioned   247 1573821 1.569429e-04
## 1736    Jeff Foust                 motor   247 1573821 1.569429e-04
## 1737    Jeff Foust                   fit   246 1573821 1.563075e-04
## 1738    Jeff Foust              learning   246 1573821 1.563075e-04
## 1739    Jeff Foust                notice   246 1573821 1.563075e-04
## 1740    Jeff Foust                 shift   246 1573821 1.563075e-04
## 1741  Sandra Erwin              commerce   246  716353 3.434061e-04
## 1742  Sandra Erwin              customer   246  716353 3.434061e-04
## 1743  Sandra Erwin               warfare   246  716353 3.434061e-04
## 1744    Jeff Foust                   39a   245 1573821 1.556721e-04
## 1745    Jeff Foust               goddard   245 1573821 1.556721e-04
## 1746    Jeff Foust               keeping   245 1573821 1.556721e-04
## 1747    Jeff Foust                nevada   245 1573821 1.556721e-04
## 1748    Jeff Foust                region   245 1573821 1.556721e-04
## 1749    Jeff Foust               richard   245 1573821 1.556721e-04
## 1750    Jeff Foust                robert   245 1573821 1.556721e-04
## 1751    Jeff Foust                target   245 1573821 1.556721e-04
## 1752  Sandra Erwin             confirmed   245  716353 3.420102e-04
## 1753  Sandra Erwin                  huge   245  716353 3.420102e-04
## 1754  Sandra Erwin          proliferated   245  716353 3.420102e-04
## 1755  Sandra Erwin               springs   245  716353 3.420102e-04
## 1756  Sandra Erwin                 stand   245  716353 3.420102e-04
## 1757    Jeff Foust            announcing   244 1573821 1.550367e-04
## 1758    Jeff Foust             collision   244 1573821 1.550367e-04
## 1759    Jeff Foust               lueders   244 1573821 1.550367e-04
## 1760    Jeff Foust               society   244 1573821 1.550367e-04
## 1761  Sandra Erwin              emerging   244  716353 3.406142e-04
## 1762  Sandra Erwin            laboratory   244  716353 3.406142e-04
## 1763  Sandra Erwin              nation’s   244  716353 3.406142e-04
## 1764  Sandra Erwin                 prime   244  716353 3.406142e-04
## 1765  Sandra Erwin                 sda’s   244  716353 3.406142e-04
## 1766    Jeff Foust            aschbacher   243 1573821 1.544013e-04
## 1767    Jeff Foust               retired   243 1573821 1.544013e-04
## 1768    Jeff Foust            spaceplane   243 1573821 1.544013e-04
## 1769    Jeff Foust                 unity   243 1573821 1.544013e-04
## 1770  Sandra Erwin            components   243  716353 3.392182e-04
## 1771  Sandra Erwin              creating   243  716353 3.392182e-04
## 1772  Sandra Erwin                detect   243  716353 3.392182e-04
## 1773  Sandra Erwin               meeting   243  716353 3.392182e-04
## 1774  Sandra Erwin                  opir   243  716353 3.392182e-04
## 1775    Jeff Foust                minute   242 1573821 1.537659e-04
## 1776    Jeff Foust                  star   242 1573821 1.537659e-04
## 1777  Sandra Erwin                  call   242  716353 3.378223e-04
## 1778  Sandra Erwin                   nov   242  716353 3.378223e-04
## 1779  Sandra Erwin               produce   242  716353 3.378223e-04
## 1780  Sandra Erwin                  user   242  716353 3.378223e-04
## 1781    Jeff Foust                 crews   241 1573821 1.531305e-04
## 1782  Sandra Erwin              facility   241  716353 3.364263e-04
## 1783  Sandra Erwin                  firm   241  716353 3.364263e-04
## 1784    Jeff Foust                   add   240 1573821 1.524951e-04
## 1785    Jeff Foust                  cruz   240 1573821 1.524951e-04
## 1786    Jeff Foust            protection   240 1573821 1.524951e-04
## 1787  Sandra Erwin                 board   240  716353 3.350304e-04
## 1788  Sandra Erwin                  lead   240  716353 3.350304e-04
## 1789  Sandra Erwin             operating   240  716353 3.350304e-04
## 1790    Jeff Foust                events   239 1573821 1.518597e-04
## 1791    Jeff Foust                  host   239 1573821 1.518597e-04
## 1792    Jeff Foust              operates   239 1573821 1.518597e-04
## 1793    Jeff Foust              orbiting   239 1573821 1.518597e-04
## 1794    Jeff Foust            rocketdyne   239 1573821 1.518597e-04
## 1795    Jeff Foust           transporter   239 1573821 1.518597e-04
## 1796  Sandra Erwin            accelerate   239  716353 3.336344e-04
## 1797  Sandra Erwin                   gao   239  716353 3.336344e-04
## 1798    Jeff Foust            contractor   238 1573821 1.512243e-04
## 1799    Jeff Foust                 david   238 1573821 1.512243e-04
## 1800    Jeff Foust             involving   238 1573821 1.512243e-04
## 1801    Jeff Foust             nanoracks   238 1573821 1.512243e-04
## 1802    Jeff Foust           requirement   238 1573821 1.512243e-04
## 1803    Jeff Foust                   snc   238 1573821 1.512243e-04
## 1804  Sandra Erwin              hardware   238  716353 3.322384e-04
## 1805  Sandra Erwin                  unit   238  716353 3.322384e-04
## 1806    Jeff Foust                 hopes   237 1573821 1.505889e-04
## 1807    Jeff Foust                hubble   237 1573821 1.505889e-04
## 1808    Jeff Foust              intelsat   237 1573821 1.505889e-04
## 1809    Jeff Foust              russia’s   237 1573821 1.505889e-04
## 1810    Jeff Foust                   tom   237 1573821 1.505889e-04
## 1811    Jeff Foust               ukraine   237 1573821 1.505889e-04
## 1812  Sandra Erwin                   feb   237  716353 3.308425e-04
## 1813    Jeff Foust             direction   236 1573821 1.499535e-04
## 1814    Jeff Foust                handle   236 1573821 1.499535e-04
## 1815    Jeff Foust                 meter   236 1573821 1.499535e-04
## 1816    Jeff Foust              solution   236 1573821 1.499535e-04
## 1817  Sandra Erwin              priority   236  716353 3.294465e-04
## 1818    Jeff Foust                secure   235 1573821 1.493181e-04
## 1819    Jeff Foust               updates   235 1573821 1.493181e-04
## 1820  Sandra Erwin             completed   235  716353 3.280506e-04
## 1821  Sandra Erwin             prototype   235  716353 3.280506e-04
## 1822    Jeff Foust             expensive   234 1573821 1.486827e-04
## 1823    Jeff Foust                   gap   234 1573821 1.486827e-04
## 1824    Jeff Foust                  idea   234 1573821 1.486827e-04
## 1825    Jeff Foust              magazine   234 1573821 1.486827e-04
## 1826    Jeff Foust           traditional   234 1573821 1.486827e-04
## 1827  Sandra Erwin              identify   234  716353 3.266546e-04
## 1828    Jeff Foust             academies   233 1573821 1.480473e-04
## 1829    Jeff Foust                 alpha   233 1573821 1.480473e-04
## 1830    Jeff Foust               branson   233 1573821 1.480473e-04
## 1831    Jeff Foust                 euros   233 1573821 1.480473e-04
## 1832    Jeff Foust                 faa’s   233 1573821 1.480473e-04
## 1833    Jeff Foust                  feel   233 1573821 1.480473e-04
## 1834    Jeff Foust           flexibility   233 1573821 1.480473e-04
## 1835    Jeff Foust                  join   233 1573821 1.480473e-04
## 1836  Sandra Erwin                   add   233  716353 3.252586e-04
## 1837  Sandra Erwin               china’s   233  716353 3.252586e-04
## 1838  Sandra Erwin                   lab   233  716353 3.252586e-04
## 1839  Sandra Erwin              leverage   233  716353 3.252586e-04
## 1840    Jeff Foust              believed   232 1573821 1.474119e-04
## 1841    Jeff Foust              directed   232 1573821 1.474119e-04
## 1842    Jeff Foust              engineer   232 1573821 1.474119e-04
## 1843    Jeff Foust           propellants   232 1573821 1.474119e-04
## 1844    Jeff Foust                 stand   232 1573821 1.474119e-04
## 1845  Sandra Erwin                 civil   232  716353 3.238627e-04
## 1846  Sandra Erwin               decided   232  716353 3.238627e-04
## 1847  Sandra Erwin                fnames   232  716353 3.238627e-04
## 1848  Sandra Erwin                ftypes   232  716353 3.238627e-04
## 1849  Sandra Erwin                  fund   232  716353 3.238627e-04
## 1850  Sandra Erwin               partner   232  716353 3.238627e-04
## 1851  Sandra Erwin               venture   232  716353 3.238627e-04
## 1852    Jeff Foust              affected   231 1573821 1.467765e-04
## 1853    Jeff Foust         congressional   231 1573821 1.467765e-04
## 1854    Jeff Foust                  hart   231 1573821 1.467765e-04
## 1855    Jeff Foust              provider   231 1573821 1.467765e-04
## 1856    Jeff Foust                 storm   231 1573821 1.467765e-04
## 1857  Sandra Erwin                   job   231  716353 3.224667e-04
## 1858  Sandra Erwin                   lsa   231  716353 3.224667e-04
## 1859  Sandra Erwin              operates   231  716353 3.224667e-04
## 1860  Sandra Erwin                you’re   231  716353 3.224667e-04
## 1861    Jeff Foust               changed   230 1573821 1.461411e-04
## 1862    Jeff Foust           perspective   230 1573821 1.461411e-04
## 1863    Jeff Foust              prepared   230 1573821 1.461411e-04
## 1864    Jeff Foust          specifically   230 1573821 1.461411e-04
## 1865    Jeff Foust               stennis   230 1573821 1.461411e-04
## 1866    Jeff Foust                wasn’t   230 1573821 1.461411e-04
## 1867  Sandra Erwin              agency’s   230  716353 3.210708e-04
## 1868  Sandra Erwin               attacks   230  716353 3.210708e-04
## 1869  Sandra Erwin               startup   230  716353 3.210708e-04
## 1870    Jeff Foust              licenses   229 1573821 1.455057e-04
## 1871    Jeff Foust                prices   229 1573821 1.455057e-04
## 1872    Jeff Foust              publicly   229 1573821 1.455057e-04
## 1873    Jeff Foust             referring   229 1573821 1.455057e-04
## 1874    Jeff Foust                  shut   229 1573821 1.455057e-04
## 1875    Jeff Foust             solutions   229 1573821 1.455057e-04
## 1876    Jeff Foust        sustainability   229 1573821 1.455057e-04
## 1877    Jeff Foust                unique   229 1573821 1.455057e-04
## 1878    Jeff Foust                  wait   229 1573821 1.455057e-04
## 1879  Sandra Erwin               address   229  716353 3.196748e-04
## 1880  Sandra Erwin           authorities   229  716353 3.196748e-04
## 1881    Jeff Foust                  cash   228 1573821 1.448704e-04
## 1882    Jeff Foust          confirmation   228 1573821 1.448704e-04
## 1883    Jeff Foust              manifest   228 1573821 1.448704e-04
## 1884    Jeff Foust              marshall   228 1573821 1.448704e-04
## 1885  Sandra Erwin             providing   228  716353 3.182788e-04
## 1886  Sandra Erwin                 serve   228  716353 3.182788e-04
## 1887  Sandra Erwin                what’s   228  716353 3.182788e-04
## 1888    Jeff Foust             committed   227 1573821 1.442350e-04
## 1889    Jeff Foust                safely   227 1573821 1.442350e-04
## 1890  Sandra Erwin              economic   227  716353 3.168829e-04
## 1891  Sandra Erwin              saltzman   227  716353 3.168829e-04
## 1892    Jeff Foust                closer   226 1573821 1.435996e-04
## 1893    Jeff Foust              delivery   226 1573821 1.435996e-04
## 1894    Jeff Foust             essential   226 1573821 1.435996e-04
## 1895    Jeff Foust               houston   226 1573821 1.435996e-04
## 1896    Jeff Foust                mobile   226 1573821 1.435996e-04
## 1897    Jeff Foust             oversight   226 1573821 1.435996e-04
## 1898    Jeff Foust                  play   226 1573821 1.435996e-04
## 1899    Jeff Foust             workforce   226 1573821 1.435996e-04
## 1900  Sandra Erwin          applications   226  716353 3.154869e-04
## 1901  Sandra Erwin                 draft   226  716353 3.154869e-04
## 1902    Jeff Foust              exciting   225 1573821 1.429642e-04
## 1903    Jeff Foust               impacts   225 1573821 1.429642e-04
## 1904    Jeff Foust                  lift   225 1573821 1.429642e-04
## 1905    Jeff Foust               missile   225 1573821 1.429642e-04
## 1906  Sandra Erwin               traffic   225  716353 3.140910e-04
## 1907    Jeff Foust                   ast   224 1573821 1.423288e-04
## 1908    Jeff Foust             explosion   224 1573821 1.423288e-04
## 1909    Jeff Foust             installed   224 1573821 1.423288e-04
## 1910    Jeff Foust              majority   224 1573821 1.423288e-04
## 1911    Jeff Foust             operation   224 1573821 1.423288e-04
## 1912    Jeff Foust               raising   224 1573821 1.423288e-04
## 1913  Sandra Erwin              overhead   224  716353 3.126950e-04
## 1914    Jeff Foust                   fla   223 1573821 1.416934e-04
## 1915    Jeff Foust                  he’s   223 1573821 1.416934e-04
## 1916    Jeff Foust              material   223 1573821 1.416934e-04
## 1917  Sandra Erwin                august   223  716353 3.112990e-04
## 1918  Sandra Erwin           situational   223  716353 3.112990e-04
## 1919  Sandra Erwin                vision   223  716353 3.112990e-04
## 1920    Jeff Foust              airspace   222 1573821 1.410580e-04
## 1921    Jeff Foust           effectively   222 1573821 1.410580e-04
## 1922    Jeff Foust            guidelines   222 1573821 1.410580e-04
## 1923    Jeff Foust            processing   222 1573821 1.410580e-04
## 1924    Jeff Foust                  push   222 1573821 1.410580e-04
## 1925    Jeff Foust                   sea   222 1573821 1.410580e-04
## 1926    Jeff Foust               section   222 1573821 1.410580e-04
## 1927    Jeff Foust               degrees   221 1573821 1.404226e-04
## 1928    Jeff Foust              flagship   221 1573821 1.404226e-04
## 1929    Jeff Foust                object   221 1573821 1.404226e-04
## 1930    Jeff Foust               omnibus   221 1573821 1.404226e-04
## 1931    Jeff Foust               placing   221 1573821 1.404226e-04
## 1932    Jeff Foust               reduced   221 1573821 1.404226e-04
## 1933    Jeff Foust               respond   221 1573821 1.404226e-04
## 1934  Sandra Erwin                 links   221  716353 3.085071e-04
## 1935    Jeff Foust         approximately   220 1573821 1.397872e-04
## 1936    Jeff Foust               pacific   220 1573821 1.397872e-04
## 1937    Jeff Foust                  slip   220 1573821 1.397872e-04
## 1938  Sandra Erwin            consortium   220  716353 3.071112e-04
## 1939  Sandra Erwin               expects   220  716353 3.071112e-04
## 1940  Sandra Erwin             integrate   220  716353 3.071112e-04
## 1941  Sandra Erwin              magazine   220  716353 3.071112e-04
## 1942  Sandra Erwin               nations   220  716353 3.071112e-04
## 1943  Sandra Erwin                 radio   220  716353 3.071112e-04
## 1944    Jeff Foust               allowed   219 1573821 1.391518e-04
## 1945    Jeff Foust                   buy   219 1573821 1.391518e-04
## 1946    Jeff Foust     commercialization   219 1573821 1.391518e-04
## 1947    Jeff Foust           competitive   219 1573821 1.391518e-04
## 1948    Jeff Foust               contact   219 1573821 1.391518e-04
## 1949    Jeff Foust                faster   219 1573821 1.391518e-04
## 1950    Jeff Foust                   jet   219 1573821 1.391518e-04
## 1951    Jeff Foust                joined   219 1573821 1.391518e-04
## 1952    Jeff Foust                 local   219 1573821 1.391518e-04
## 1953    Jeff Foust             political   219 1573821 1.391518e-04
## 1954    Jeff Foust           possibility   219 1573821 1.391518e-04
## 1955  Sandra Erwin            resolution   219  716353 3.057152e-04
## 1956  Sandra Erwin                 times   219  716353 3.057152e-04
## 1957    Jeff Foust           association   218 1573821 1.385164e-04
## 1958    Jeff Foust                 dates   218 1573821 1.385164e-04
## 1959    Jeff Foust             extensive   218 1573821 1.385164e-04
## 1960    Jeff Foust                health   218 1573821 1.385164e-04
## 1961    Jeff Foust              machines   218 1573821 1.385164e-04
## 1962    Jeff Foust               prepare   218 1573821 1.385164e-04
## 1963    Jeff Foust              purchase   218 1573821 1.385164e-04
## 1964    Jeff Foust                 sense   218 1573821 1.385164e-04
## 1965  Sandra Erwin              platform   218  716353 3.043192e-04
## 1966  Sandra Erwin               targets   218  716353 3.043192e-04
## 1967  Sandra Erwin            vandenberg   218  716353 3.043192e-04
## 1968    Jeff Foust              ceremony   217 1573821 1.378810e-04
## 1969    Jeff Foust                hasn’t   217 1573821 1.378810e-04
## 1970    Jeff Foust                  i’ve   217 1573821 1.378810e-04
## 1971    Jeff Foust          perseverance   217 1573821 1.378810e-04
## 1972    Jeff Foust              remained   217 1573821 1.378810e-04
## 1973    Jeff Foust              shotwell   217 1573821 1.378810e-04
## 1974  Sandra Erwin                 biden   217  716353 3.029233e-04
## 1975  Sandra Erwin                  cape   217  716353 3.029233e-04
## 1976  Sandra Erwin              internet   217  716353 3.029233e-04
## 1977    Jeff Foust                facing   216 1573821 1.372456e-04
## 1978    Jeff Foust                  isro   216 1573821 1.372456e-04
## 1979    Jeff Foust        recommendation   216 1573821 1.372456e-04
## 1980    Jeff Foust              resource   216 1573821 1.372456e-04
## 1981    Jeff Foust                 tweet   216 1573821 1.372456e-04
## 1982    Jeff Foust                valued   216 1573821 1.372456e-04
## 1983  Sandra Erwin             continues   216  716353 3.015273e-04
## 1984  Sandra Erwin                  corp   216  716353 3.015273e-04
## 1985  Sandra Erwin              location   216  716353 3.015273e-04
## 1986  Sandra Erwin            successful   216  716353 3.015273e-04
## 1987    Jeff Foust             implement   215 1573821 1.366102e-04
## 1988    Jeff Foust              improved   215 1573821 1.366102e-04
## 1989    Jeff Foust           investments   215 1573821 1.366102e-04
## 1990  Sandra Erwin             combatant   215  716353 3.001314e-04
## 1991  Sandra Erwin                invest   215  716353 3.001314e-04
## 1992  Sandra Erwin                   sar   215  716353 3.001314e-04
## 1993    Jeff Foust                alaska   214 1573821 1.359748e-04
## 1994    Jeff Foust               centaur   214 1573821 1.359748e-04
## 1995    Jeff Foust               involve   214 1573821 1.359748e-04
## 1996    Jeff Foust              location   214 1573821 1.359748e-04
## 1997    Jeff Foust              minister   214 1573821 1.359748e-04
## 1998    Jeff Foust              operator   214 1573821 1.359748e-04
## 1999    Jeff Foust                 solid   214 1573821 1.359748e-04
## 2000  Sandra Erwin                 calls   214  716353 2.987354e-04
## 2001  Sandra Erwin            electronic   214  716353 2.987354e-04
## 2002  Sandra Erwin               october   214  716353 2.987354e-04
## 2003  Sandra Erwin              starlink   214  716353 2.987354e-04
## 2004    Jeff Foust               calling   213 1573821 1.353394e-04
## 2005    Jeff Foust            cosmonauts   213 1573821 1.353394e-04
## 2006    Jeff Foust          experimental   213 1573821 1.353394e-04
## 2007    Jeff Foust               fairing   213 1573821 1.353394e-04
## 2008    Jeff Foust                 hertz   213 1573821 1.353394e-04
## 2009    Jeff Foust             intuitive   213 1573821 1.353394e-04
## 2010    Jeff Foust                leader   213 1573821 1.353394e-04
## 2011  Sandra Erwin              antennas   213  716353 2.973394e-04
## 2012  Sandra Erwin                 buses   213  716353 2.973394e-04
## 2013  Sandra Erwin               culture   213  716353 2.973394e-04
## 2014  Sandra Erwin            priorities   213  716353 2.973394e-04
## 2015    Jeff Foust               factors   212 1573821 1.347040e-04
## 2016    Jeff Foust                timing   212 1573821 1.347040e-04
## 2017  Sandra Erwin            agreements   212  716353 2.959435e-04
## 2018  Sandra Erwin               manager   212  716353 2.959435e-04
## 2019  Sandra Erwin                strong   212  716353 2.959435e-04
## 2020    Jeff Foust             developer   211 1573821 1.340686e-04
## 2021    Jeff Foust            importance   211 1573821 1.340686e-04
## 2022    Jeff Foust            individual   211 1573821 1.340686e-04
## 2023    Jeff Foust           ministerial   211 1573821 1.340686e-04
## 2024  Sandra Erwin                 david   211  716353 2.945475e-04
## 2025  Sandra Erwin                 dod’s   211  716353 2.945475e-04
## 2026  Sandra Erwin                impact   211  716353 2.945475e-04
## 2027  Sandra Erwin                issued   211  716353 2.945475e-04
## 2028  Sandra Erwin               patrick   211  716353 2.945475e-04
## 2029    Jeff Foust              acquired   210 1573821 1.334332e-04
## 2030    Jeff Foust               profile   210 1573821 1.334332e-04
## 2031    Jeff Foust            provisions   210 1573821 1.334332e-04
## 2032    Jeff Foust              slightly   210 1573821 1.334332e-04
## 2033    Jeff Foust                treaty   210 1573821 1.334332e-04
## 2034    Jeff Foust              versions   210 1573821 1.334332e-04
## 2035  Sandra Erwin                 ahead   210  716353 2.931516e-04
## 2036  Sandra Erwin            artificial   210  716353 2.931516e-04
## 2037  Sandra Erwin                  band   210  716353 2.931516e-04
## 2038  Sandra Erwin                letter   210  716353 2.931516e-04
## 2039  Sandra Erwin                   nga   210  716353 2.931516e-04
## 2040  Sandra Erwin              spacex’s   210  716353 2.931516e-04
## 2041    Jeff Foust                canada   209 1573821 1.327978e-04
## 2042    Jeff Foust                  jpss   209 1573821 1.327978e-04
## 2043    Jeff Foust              meetings   209 1573821 1.327978e-04
## 2044  Sandra Erwin                acting   209  716353 2.917556e-04
## 2045  Sandra Erwin               capitol   209  716353 2.917556e-04
## 2046  Sandra Erwin         cybersecurity   209  716353 2.917556e-04
## 2047  Sandra Erwin             launching   209  716353 2.917556e-04
## 2048    Jeff Foust           anticipated   208 1573821 1.321624e-04
## 2049    Jeff Foust               compete   208 1573821 1.321624e-04
## 2050    Jeff Foust               justice   208 1573821 1.321624e-04
## 2051    Jeff Foust               learned   208 1573821 1.321624e-04
## 2052    Jeff Foust           reliability   208 1573821 1.321624e-04
## 2053    Jeff Foust                 reuse   208 1573821 1.321624e-04
## 2054    Jeff Foust                simply   208 1573821 1.321624e-04
## 2055    Jeff Foust               variety   208 1573821 1.321624e-04
## 2056  Sandra Erwin                entire   208  716353 2.903596e-04
## 2057  Sandra Erwin              harrison   208  716353 2.903596e-04
## 2058  Sandra Erwin                  sign   208  716353 2.903596e-04
## 2059  Sandra Erwin             spokesman   208  716353 2.903596e-04
## 2060    Jeff Foust              guidance   207 1573821 1.315270e-04
## 2061    Jeff Foust                   ksc   207 1573821 1.315270e-04
## 2062    Jeff Foust            republican   207 1573821 1.315270e-04
## 2063    Jeff Foust                 scott   207 1573821 1.315270e-04
## 2064    Jeff Foust                search   207 1573821 1.315270e-04
## 2065    Jeff Foust            separation   207 1573821 1.315270e-04
## 2066    Jeff Foust              standard   207 1573821 1.315270e-04
## 2067    Jeff Foust           terrestrial   207 1573821 1.315270e-04
## 2068  Sandra Erwin              american   207  716353 2.889637e-04
## 2069  Sandra Erwin              intended   207  716353 2.889637e-04
## 2070    Jeff Foust             criticism   206 1573821 1.308916e-04
## 2071    Jeff Foust          demonstrated   206 1573821 1.308916e-04
## 2072    Jeff Foust                 light   206 1573821 1.308916e-04
## 2073    Jeff Foust                   oig   206 1573821 1.308916e-04
## 2074    Jeff Foust                 party   206 1573821 1.308916e-04
## 2075    Jeff Foust               protest   206 1573821 1.308916e-04
## 2076    Jeff Foust            whitesides   206 1573821 1.308916e-04
## 2077    Jeff Foust                 worth   206 1573821 1.308916e-04
## 2078  Sandra Erwin                  afrl   206  716353 2.875677e-04
## 2079  Sandra Erwin                 fight   206  716353 2.875677e-04
## 2080  Sandra Erwin                 owned   206  716353 2.875677e-04
## 2081  Sandra Erwin                select   206  716353 2.875677e-04
## 2082  Sandra Erwin          solicitation   206  716353 2.875677e-04
## 2083    Jeff Foust              emerging   205 1573821 1.302562e-04
## 2084    Jeff Foust                phases   205 1573821 1.302562e-04
## 2085    Jeff Foust        reconnaissance   205 1573821 1.302562e-04
## 2086    Jeff Foust              timeline   205 1573821 1.302562e-04
## 2087  Sandra Erwin              approved   205  716353 2.861718e-04
## 2088  Sandra Erwin           bureaucracy   205  716353 2.861718e-04
## 2089  Sandra Erwin             logistics   205  716353 2.861718e-04
## 2090    Jeff Foust                arrays   204 1573821 1.296208e-04
## 2091    Jeff Foust              computer   204 1573821 1.296208e-04
## 2092    Jeff Foust            criticized   204 1573821 1.296208e-04
## 2093    Jeff Foust             delivered   204 1573821 1.296208e-04
## 2094    Jeff Foust              horizons   204 1573821 1.296208e-04
## 2095    Jeff Foust                  huge   204 1573821 1.296208e-04
## 2096    Jeff Foust                  slow   204 1573821 1.296208e-04
## 2097    Jeff Foust             standards   204 1573821 1.296208e-04
## 2098  Sandra Erwin             interview   204  716353 2.847758e-04
## 2099  Sandra Erwin                timing   204  716353 2.847758e-04
## 2100  Sandra Erwin                  view   204  716353 2.847758e-04
## 2101    Jeff Foust           committee’s   203 1573821 1.289854e-04
## 2102    Jeff Foust             depending   203 1573821 1.289854e-04
## 2103    Jeff Foust             inaugural   203 1573821 1.289854e-04
## 2104    Jeff Foust                normal   203 1573821 1.289854e-04
## 2105    Jeff Foust          restrictions   203 1573821 1.289854e-04
## 2106  Sandra Erwin               acquire   203  716353 2.833798e-04
## 2107  Sandra Erwin                attack   203  716353 2.833798e-04
## 2108  Sandra Erwin             decisions   203  716353 2.833798e-04
## 2109  Sandra Erwin                growth   203  716353 2.833798e-04
## 2110  Sandra Erwin                 ula’s   203  716353 2.833798e-04
## 2111    Jeff Foust             directive   202 1573821 1.283500e-04
## 2112    Jeff Foust                 obama   202 1573821 1.283500e-04
## 2113    Jeff Foust                 plane   202 1573821 1.283500e-04
## 2114    Jeff Foust                shares   202 1573821 1.283500e-04
## 2115    Jeff Foust             situation   202 1573821 1.283500e-04
## 2116    Jeff Foust                   sky   202 1573821 1.283500e-04
## 2117    Jeff Foust               talking   202 1573821 1.283500e-04
## 2118  Sandra Erwin                follow   202  716353 2.819839e-04
## 2119  Sandra Erwin                  star   202  716353 2.819839e-04
## 2120    Jeff Foust               benefit   201 1573821 1.277147e-04
## 2121    Jeff Foust                   dan   201 1573821 1.277147e-04
## 2122    Jeff Foust                debate   201 1573821 1.277147e-04
## 2123    Jeff Foust                  fast   201 1573821 1.277147e-04
## 2124    Jeff Foust                invest   201 1573821 1.277147e-04
## 2125    Jeff Foust                looked   201 1573821 1.277147e-04
## 2126    Jeff Foust                psyche   201 1573821 1.277147e-04
## 2127    Jeff Foust             rehearsal   201 1573821 1.277147e-04
## 2128  Sandra Erwin                passed   201  716353 2.805879e-04
## 2129    Jeff Foust            bipartisan   200 1573821 1.270793e-04
## 2130    Jeff Foust                   bob   200 1573821 1.270793e-04
## 2131    Jeff Foust                 isn’t   200 1573821 1.270793e-04
## 2132    Jeff Foust              vigoride   200 1573821 1.270793e-04
## 2133  Sandra Erwin                awards   200  716353 2.791920e-04
## 2134  Sandra Erwin                 begin   200  716353 2.791920e-04
## 2135  Sandra Erwin               concept   200  716353 2.791920e-04
## 2136  Sandra Erwin                 offer   200  716353 2.791920e-04
## 2137  Sandra Erwin                  text   200  716353 2.791920e-04
## 2138    Jeff Foust                 calif   199 1573821 1.264439e-04
## 2139    Jeff Foust              landings   199 1573821 1.264439e-04
## 2140    Jeff Foust            spaceports   199 1573821 1.264439e-04
## 2141  Sandra Erwin                 named   199  716353 2.777960e-04
## 2142  Sandra Erwin                planet   199  716353 2.777960e-04
## 2143    Jeff Foust            bankruptcy   198 1573821 1.258085e-04
## 2144    Jeff Foust               designs   198 1573821 1.258085e-04
## 2145    Jeff Foust               optical   198 1573821 1.258085e-04
## 2146    Jeff Foust                 roles   198 1573821 1.258085e-04
## 2147    Jeff Foust               setting   198 1573821 1.258085e-04
## 2148    Jeff Foust          solicitation   198 1573821 1.258085e-04
## 2149    Jeff Foust                  tank   198 1573821 1.258085e-04
## 2150    Jeff Foust               webcast   198 1573821 1.258085e-04
## 2151  Sandra Erwin                annual   198  716353 2.764000e-04
## 2152  Sandra Erwin               barrett   198  716353 2.764000e-04
## 2153  Sandra Erwin                defend   198  716353 2.764000e-04
## 2154  Sandra Erwin          increasingly   198  716353 2.764000e-04
## 2155  Sandra Erwin              officers   198  716353 2.764000e-04
## 2156  Sandra Erwin                 worth   198  716353 2.764000e-04
## 2157  Sandra Erwin                 wrote   198  716353 2.764000e-04
## 2158    Jeff Foust               account   197 1573821 1.251731e-04
## 2159    Jeff Foust              weighing   197 1573821 1.251731e-04
## 2160    Jeff Foust           aeronautics   196 1573821 1.245377e-04
## 2161    Jeff Foust                   cjs   196 1573821 1.245377e-04
## 2162    Jeff Foust           experienced   196 1573821 1.245377e-04
## 2163    Jeff Foust           initiatives   196 1573821 1.245377e-04
## 2164    Jeff Foust               italian   196 1573821 1.245377e-04
## 2165    Jeff Foust              kilogram   196 1573821 1.245377e-04
## 2166    Jeff Foust                 minor   196 1573821 1.245377e-04
## 2167    Jeff Foust              reaching   196 1573821 1.245377e-04
## 2168    Jeff Foust               restore   196 1573821 1.245377e-04
## 2169    Jeff Foust               sending   196 1573821 1.245377e-04
## 2170  Sandra Erwin             attention   196  716353 2.736081e-04
## 2171  Sandra Erwin              blacksky   196  716353 2.736081e-04
## 2172  Sandra Erwin                  task   196  716353 2.736081e-04
## 2173    Jeff Foust                   ceo   195 1573821 1.239023e-04
## 2174    Jeff Foust                   era   195 1573821 1.239023e-04
## 2175    Jeff Foust                inside   195 1573821 1.239023e-04
## 2176    Jeff Foust                 lab’s   195 1573821 1.239023e-04
## 2177    Jeff Foust            monitoring   195 1573821 1.239023e-04
## 2178    Jeff Foust            spacewalks   195 1573821 1.239023e-04
## 2179    Jeff Foust           synchronous   195 1573821 1.239023e-04
## 2180  Sandra Erwin              concepts   195  716353 2.722122e-04
## 2181  Sandra Erwin              coverage   195  716353 2.722122e-04
## 2182  Sandra Erwin                decade   195  716353 2.722122e-04
## 2183  Sandra Erwin                 weeks   195  716353 2.722122e-04
## 2184    Jeff Foust             council’s   194 1573821 1.232669e-04
## 2185    Jeff Foust             expertise   194 1573821 1.232669e-04
## 2186    Jeff Foust                 learn   194 1573821 1.232669e-04
## 2187    Jeff Foust               reasons   194 1573821 1.232669e-04
## 2188    Jeff Foust              sentinel   194 1573821 1.232669e-04
## 2189  Sandra Erwin             component   194  716353 2.708162e-04
## 2190  Sandra Erwin              starting   194  716353 2.708162e-04
## 2191  Sandra Erwin             structure   194  716353 2.708162e-04
## 2192    Jeff Foust             collected   193 1573821 1.226315e-04
## 2193    Jeff Foust                decide   193 1573821 1.226315e-04
## 2194    Jeff Foust               foreign   193 1573821 1.226315e-04
## 2195    Jeff Foust             framework   193 1573821 1.226315e-04
## 2196    Jeff Foust                 india   193 1573821 1.226315e-04
## 2197    Jeff Foust          intelligence   193 1573821 1.226315e-04
## 2198    Jeff Foust                limits   193 1573821 1.226315e-04
## 2199  Sandra Erwin              calvelli   193  716353 2.694202e-04
## 2200  Sandra Erwin             command’s   193  716353 2.694202e-04
## 2201  Sandra Erwin                didn’t   193  716353 2.694202e-04
## 2202  Sandra Erwin             submitted   193  716353 2.694202e-04
## 2203    Jeff Foust             conducted   192 1573821 1.219961e-04
## 2204    Jeff Foust                 covid   192 1573821 1.219961e-04
## 2205    Jeff Foust              internal   192 1573821 1.219961e-04
## 2206    Jeff Foust          investigator   192 1573821 1.219961e-04
## 2207    Jeff Foust                ispace   192 1573821 1.219961e-04
## 2208    Jeff Foust                 probe   192 1573821 1.219961e-04
## 2209    Jeff Foust           situational   192 1573821 1.219961e-04
## 2210    Jeff Foust           unspecified   192 1573821 1.219961e-04
## 2211  Sandra Erwin                 close   192  716353 2.680243e-04
## 2212  Sandra Erwin                expect   192  716353 2.680243e-04
## 2213  Sandra Erwin             institute   192  716353 2.680243e-04
## 2214  Sandra Erwin           legislative   192  716353 2.680243e-04
## 2215  Sandra Erwin                  push   192  716353 2.680243e-04
## 2216    Jeff Foust           coronavirus   191 1573821 1.213607e-04
## 2217    Jeff Foust                docked   191 1573821 1.213607e-04
## 2218    Jeff Foust              dynetics   191 1573821 1.213607e-04
## 2219    Jeff Foust               examine   191 1573821 1.213607e-04
## 2220    Jeff Foust                matter   191 1573821 1.213607e-04
## 2221    Jeff Foust        responsibility   191 1573821 1.213607e-04
## 2222    Jeff Foust                  sell   191 1573821 1.213607e-04
## 2223    Jeff Foust             spokesman   191 1573821 1.213607e-04
## 2224    Jeff Foust                  tons   191 1573821 1.213607e-04
## 2225  Sandra Erwin            businesses   191  716353 2.666283e-04
## 2226  Sandra Erwin              delivery   191  716353 2.666283e-04
## 2227  Sandra Erwin             difficult   191  716353 2.666283e-04
## 2228  Sandra Erwin               earlier   191  716353 2.666283e-04
## 2229  Sandra Erwin           experiments   191  716353 2.666283e-04
## 2230    Jeff Foust                 array   190 1573821 1.207253e-04
## 2231    Jeff Foust                 bruno   190 1573821 1.207253e-04
## 2232    Jeff Foust                camera   190 1573821 1.207253e-04
## 2233    Jeff Foust               confirm   190 1573821 1.207253e-04
## 2234    Jeff Foust         consideration   190 1573821 1.207253e-04
## 2235    Jeff Foust                 dress   190 1573821 1.207253e-04
## 2236    Jeff Foust              failures   190 1573821 1.207253e-04
## 2237    Jeff Foust               morning   190 1573821 1.207253e-04
## 2238    Jeff Foust                  paul   190 1573821 1.207253e-04
## 2239    Jeff Foust              positive   190 1573821 1.207253e-04
## 2240    Jeff Foust             responded   190 1573821 1.207253e-04
## 2241    Jeff Foust              supplies   190 1573821 1.207253e-04
## 2242    Jeff Foust               winning   190 1573821 1.207253e-04
## 2243  Sandra Erwin      administration’s   190  716353 2.652324e-04
## 2244  Sandra Erwin              complete   190  716353 2.652324e-04
## 2245  Sandra Erwin               economy   190  716353 2.652324e-04
## 2246    Jeff Foust                claims   189 1573821 1.200899e-04
## 2247    Jeff Foust                margin   189 1573821 1.200899e-04
## 2248    Jeff Foust               oceanic   189 1573821 1.200899e-04
## 2249    Jeff Foust                online   189 1573821 1.200899e-04
## 2250    Jeff Foust                 rates   189 1573821 1.200899e-04
## 2251  Sandra Erwin               conduct   189  716353 2.638364e-04
## 2252  Sandra Erwin                   law   189  716353 2.638364e-04
## 2253  Sandra Erwin                  mark   189  716353 2.638364e-04
## 2254  Sandra Erwin               remains   189  716353 2.638364e-04
## 2255  Sandra Erwin                 shift   189  716353 2.638364e-04
## 2256    Jeff Foust                ascent   188 1573821 1.194545e-04
## 2257    Jeff Foust                backup   188 1573821 1.194545e-04
## 2258    Jeff Foust                  boca   188 1573821 1.194545e-04
## 2259    Jeff Foust               centers   188 1573821 1.194545e-04
## 2260    Jeff Foust             extremely   188 1573821 1.194545e-04
## 2261    Jeff Foust            luxembourg   188 1573821 1.194545e-04
## 2262    Jeff Foust               pending   188 1573821 1.194545e-04
## 2263    Jeff Foust              products   188 1573821 1.194545e-04
## 2264  Sandra Erwin             canaveral   188  716353 2.624404e-04
## 2265  Sandra Erwin               central   188  716353 2.624404e-04
## 2266  Sandra Erwin                leader   188  716353 2.624404e-04
## 2267  Sandra Erwin               special   188  716353 2.624404e-04
## 2268    Jeff Foust                 chica   187 1573821 1.188191e-04
## 2269    Jeff Foust               passage   187 1573821 1.188191e-04
## 2270    Jeff Foust            pathfinder   187 1573821 1.188191e-04
## 2271  Sandra Erwin           contracting   187  716353 2.610445e-04
## 2272  Sandra Erwin                   u.k   187  716353 2.610445e-04
## 2273    Jeff Foust              feasible   186 1573821 1.181837e-04
## 2274    Jeff Foust                 glide   186 1573821 1.181837e-04
## 2275    Jeff Foust                nature   186 1573821 1.181837e-04
## 2276    Jeff Foust               recover   186 1573821 1.181837e-04
## 2277    Jeff Foust               regions   186 1573821 1.181837e-04
## 2278    Jeff Foust               unclear   186 1573821 1.181837e-04
## 2279  Sandra Erwin             dickinson   186  716353 2.596485e-04
## 2280  Sandra Erwin                  free   186  716353 2.596485e-04
## 2281  Sandra Erwin                happen   186  716353 2.596485e-04
## 2282  Sandra Erwin                 laser   186  716353 2.596485e-04
## 2283  Sandra Erwin                  nrol   186  716353 2.596485e-04
## 2284  Sandra Erwin                  pace   186  716353 2.596485e-04
## 2285  Sandra Erwin             selection   186  716353 2.596485e-04
## 2286  Sandra Erwin           warfighting   186  716353 2.596485e-04
## 2287    Jeff Foust               brought   185 1573821 1.175483e-04
## 2288    Jeff Foust             destroyed   185 1573821 1.175483e-04
## 2289    Jeff Foust              endorsed   185 1573821 1.175483e-04
## 2290    Jeff Foust                 limit   185 1573821 1.175483e-04
## 2291    Jeff Foust                stable   185 1573821 1.175483e-04
## 2292    Jeff Foust                valves   185 1573821 1.175483e-04
## 2293  Sandra Erwin                    ai   185  716353 2.582526e-04
## 2294  Sandra Erwin         establishment   185  716353 2.582526e-04
## 2295  Sandra Erwin                  life   185  716353 2.582526e-04
## 2296  Sandra Erwin              maintain   185  716353 2.582526e-04
## 2297  Sandra Erwin               rapidly   185  716353 2.582526e-04
## 2298  Sandra Erwin                virgin   185  716353 2.582526e-04
## 2299    Jeff Foust               arizona   184 1573821 1.169129e-04
## 2300    Jeff Foust                cosmic   184 1573821 1.169129e-04
## 2301    Jeff Foust             culberson   184 1573821 1.169129e-04
## 2302  Sandra Erwin                 array   184  716353 2.568566e-04
## 2303  Sandra Erwin               capable   184  716353 2.568566e-04
## 2304  Sandra Erwin                 cargo   184  716353 2.568566e-04
## 2305  Sandra Erwin              cislunar   184  716353 2.568566e-04
## 2306  Sandra Erwin            executives   184  716353 2.568566e-04
## 2307  Sandra Erwin                 multi   184  716353 2.568566e-04
## 2308  Sandra Erwin             september   184  716353 2.568566e-04
## 2309    Jeff Foust                   cap   183 1573821 1.162775e-04
## 2310    Jeff Foust                helped   183 1573821 1.162775e-04
## 2311    Jeff Foust               outcome   183 1573821 1.162775e-04
## 2312    Jeff Foust               serving   183 1573821 1.162775e-04
## 2313    Jeff Foust                  stop   183 1573821 1.162775e-04
## 2314  Sandra Erwin                 chain   183  716353 2.554606e-04
## 2315  Sandra Erwin               initial   183  716353 2.554606e-04
## 2316  Sandra Erwin             investors   183  716353 2.554606e-04
## 2317  Sandra Erwin                 james   183  716353 2.554606e-04
## 2318  Sandra Erwin                nation   183  716353 2.554606e-04
## 2319  Sandra Erwin               similar   183  716353 2.554606e-04
## 2320  Sandra Erwin              thinking   183  716353 2.554606e-04
## 2321    Jeff Foust                 foust   182 1573821 1.156421e-04
## 2322    Jeff Foust                highly   182 1573821 1.156421e-04
## 2323    Jeff Foust             provision   182 1573821 1.156421e-04
## 2324    Jeff Foust              reducing   182 1573821 1.156421e-04
## 2325    Jeff Foust              senators   182 1573821 1.156421e-04
## 2326  Sandra Erwin                enable   182  716353 2.540647e-04
## 2327  Sandra Erwin             expensive   182  716353 2.540647e-04
## 2328  Sandra Erwin              february   182  716353 2.540647e-04
## 2329  Sandra Erwin            leadership   182  716353 2.540647e-04
## 2330  Sandra Erwin              supplier   182  716353 2.540647e-04
## 2331    Jeff Foust              attached   181 1573821 1.150067e-04
## 2332  Sandra Erwin            originally   181  716353 2.526687e-04
## 2333  Sandra Erwin           partnership   181  716353 2.526687e-04
## 2334    Jeff Foust            acceptable   180 1573821 1.143713e-04
## 2335    Jeff Foust             cosmonaut   180 1573821 1.143713e-04
## 2336    Jeff Foust                depend   180 1573821 1.143713e-04
## 2337    Jeff Foust                 fired   180 1573821 1.143713e-04
## 2338    Jeff Foust              managing   180 1573821 1.143713e-04
## 2339    Jeff Foust              operated   180 1573821 1.143713e-04
## 2340    Jeff Foust       representatives   180 1573821 1.143713e-04
## 2341    Jeff Foust              resupply   180 1573821 1.143713e-04
## 2342    Jeff Foust               rogozin   180 1573821 1.143713e-04
## 2343    Jeff Foust               segment   180 1573821 1.143713e-04
## 2344    Jeff Foust                summit   180 1573821 1.143713e-04
## 2345  Sandra Erwin                agreed   180  716353 2.512728e-04
## 2346  Sandra Erwin             authority   180  716353 2.512728e-04
## 2347    Jeff Foust          astronomical   179 1573821 1.137359e-04
## 2348    Jeff Foust            autonomous   179 1573821 1.137359e-04
## 2349    Jeff Foust                 ideas   179 1573821 1.137359e-04
## 2350    Jeff Foust          improvements   179 1573821 1.137359e-04
## 2351    Jeff Foust                moment   179 1573821 1.137359e-04
## 2352    Jeff Foust             portfolio   179 1573821 1.137359e-04
## 2353    Jeff Foust               prevent   179 1573821 1.137359e-04
## 2354    Jeff Foust                pushed   179 1573821 1.137359e-04
## 2355    Jeff Foust                 shape   179 1573821 1.137359e-04
## 2356    Jeff Foust                 stich   179 1573821 1.137359e-04
## 2357    Jeff Foust             telemetry   179 1573821 1.137359e-04
## 2358    Jeff Foust               waiting   179 1573821 1.137359e-04
## 2359  Sandra Erwin        appropriations   179  716353 2.498768e-04
## 2360  Sandra Erwin             delivered   179  716353 2.498768e-04
## 2361  Sandra Erwin            discussion   179  716353 2.498768e-04
## 2362  Sandra Erwin                highly   179  716353 2.498768e-04
## 2363  Sandra Erwin              insights   179  716353 2.498768e-04
## 2364  Sandra Erwin                unique   179  716353 2.498768e-04
## 2365  Sandra Erwin              wideband   179  716353 2.498768e-04
## 2366    Jeff Foust                   cft   178 1573821 1.131005e-04
## 2367    Jeff Foust          coordination   178 1573821 1.131005e-04
## 2368    Jeff Foust                covers   178 1573821 1.131005e-04
## 2369    Jeff Foust            determined   178 1573821 1.131005e-04
## 2370    Jeff Foust              generate   178 1573821 1.131005e-04
## 2371    Jeff Foust                 valve   178 1573821 1.131005e-04
## 2372  Sandra Erwin              acquired   178  716353 2.484808e-04
## 2373  Sandra Erwin               analyst   178  716353 2.484808e-04
## 2374  Sandra Erwin                delays   178  716353 2.484808e-04
## 2375  Sandra Erwin                motors   178  716353 2.484808e-04
## 2376    Jeff Foust                  east   177 1573821 1.124651e-04
## 2377    Jeff Foust               leaving   177 1573821 1.124651e-04
## 2378    Jeff Foust                 north   177 1573821 1.124651e-04
## 2379    Jeff Foust           participate   177 1573821 1.124651e-04
## 2380    Jeff Foust               quality   177 1573821 1.124651e-04
## 2381    Jeff Foust          relationship   177 1573821 1.124651e-04
## 2382    Jeff Foust              scrubbed   177 1573821 1.124651e-04
## 2383  Sandra Erwin                   bid   177  716353 2.470849e-04
## 2384  Sandra Erwin                  bids   177  716353 2.470849e-04
## 2385  Sandra Erwin                  date   177  716353 2.470849e-04
## 2386  Sandra Erwin              directly   177  716353 2.470849e-04
## 2387  Sandra Erwin                   diu   177  716353 2.470849e-04
## 2388  Sandra Erwin              learning   177  716353 2.470849e-04
## 2389  Sandra Erwin                  moon   177  716353 2.470849e-04
## 2390  Sandra Erwin             processes   177  716353 2.470849e-04
## 2391  Sandra Erwin                remain   177  716353 2.470849e-04
## 2392    Jeff Foust               arrived   176 1573821 1.118297e-04
## 2393    Jeff Foust             ingenuity   176 1573821 1.118297e-04
## 2394    Jeff Foust             locations   176 1573821 1.118297e-04
## 2395    Jeff Foust                proton   176 1573821 1.118297e-04
## 2396    Jeff Foust           replacement   176 1573821 1.118297e-04
## 2397    Jeff Foust               tourism   176 1573821 1.118297e-04
## 2398  Sandra Erwin                  aehf   176  716353 2.456889e-04
## 2399  Sandra Erwin             suggested   176  716353 2.456889e-04
## 2400    Jeff Foust        accountability   175 1573821 1.111943e-04
## 2401    Jeff Foust              delaying   175 1573821 1.111943e-04
## 2402    Jeff Foust                  dock   175 1573821 1.111943e-04
## 2403    Jeff Foust                driven   175 1573821 1.111943e-04
## 2404    Jeff Foust           governments   175 1573821 1.111943e-04
## 2405    Jeff Foust                  hill   175 1573821 1.111943e-04
## 2406    Jeff Foust              investor   175 1573821 1.111943e-04
## 2407    Jeff Foust               regular   175 1573821 1.111943e-04
## 2408    Jeff Foust                  road   175 1573821 1.111943e-04
## 2409  Sandra Erwin                debate   175  716353 2.442930e-04
## 2410  Sandra Erwin             increased   175  716353 2.442930e-04
## 2411  Sandra Erwin                   pay   175  716353 2.442930e-04
## 2412    Jeff Foust             country’s   174 1573821 1.105590e-04
## 2413    Jeff Foust                   gas   174 1573821 1.105590e-04
## 2414    Jeff Foust                nation   174 1573821 1.105590e-04
## 2415    Jeff Foust               planets   174 1573821 1.105590e-04
## 2416    Jeff Foust                   stm   174 1573821 1.105590e-04
## 2417  Sandra Erwin            committees   174  716353 2.428970e-04
## 2418  Sandra Erwin               heather   174  716353 2.428970e-04
## 2419  Sandra Erwin                   pnt   174  716353 2.428970e-04
## 2420  Sandra Erwin             political   174  716353 2.428970e-04
## 2421  Sandra Erwin               related   174  716353 2.428970e-04
## 2422    Jeff Foust            developers   173 1573821 1.099236e-04
## 2423    Jeff Foust                 dozen   173 1573821 1.099236e-04
## 2424    Jeff Foust              features   173 1573821 1.099236e-04
## 2425    Jeff Foust                   ray   173 1573821 1.099236e-04
## 2426    Jeff Foust           researchers   173 1573821 1.099236e-04
## 2427    Jeff Foust              upgraded   173 1573821 1.099236e-04
## 2428    Jeff Foust            difference   172 1573821 1.092882e-04
## 2429    Jeff Foust          establishing   172 1573821 1.092882e-04
## 2430    Jeff Foust                   hit   172 1573821 1.092882e-04
## 2431    Jeff Foust               leaders   172 1573821 1.092882e-04
## 2432    Jeff Foust             positions   172 1573821 1.092882e-04
## 2433    Jeff Foust                   red   172 1573821 1.092882e-04
## 2434    Jeff Foust                robust   172 1573821 1.092882e-04
## 2435  Sandra Erwin               experts   172  716353 2.401051e-04
## 2436  Sandra Erwin                 firms   172  716353 2.401051e-04
## 2437  Sandra Erwin               improve   172  716353 2.401051e-04
## 2438  Sandra Erwin               largest   172  716353 2.401051e-04
## 2439  Sandra Erwin                mattis   172  716353 2.401051e-04
## 2440  Sandra Erwin              solution   172  716353 2.401051e-04
## 2441  Sandra Erwin              speaking   172  716353 2.401051e-04
## 2442  Sandra Erwin                 tools   172  716353 2.401051e-04
## 2443    Jeff Foust             assistant   171 1573821 1.086528e-04
## 2444    Jeff Foust              attempts   171 1573821 1.086528e-04
## 2445    Jeff Foust             inspector   171 1573821 1.086528e-04
## 2446    Jeff Foust                   nsf   171 1573821 1.086528e-04
## 2447    Jeff Foust               protect   171 1573821 1.086528e-04
## 2448    Jeff Foust           challenging   170 1573821 1.080174e-04
## 2449    Jeff Foust               charles   170 1573821 1.080174e-04
## 2450    Jeff Foust              hundreds   170 1573821 1.080174e-04
## 2451    Jeff Foust                   net   170 1573821 1.080174e-04
## 2452    Jeff Foust                   vss   170 1573821 1.080174e-04
## 2453  Sandra Erwin                argued   170  716353 2.373132e-04
## 2454  Sandra Erwin                 block   170  716353 2.373132e-04
## 2455  Sandra Erwin             published   170  716353 2.373132e-04
## 2456    Jeff Foust             extending   169 1573821 1.073820e-04
## 2457    Jeff Foust                 lines   169 1573821 1.073820e-04
## 2458    Jeff Foust                models   169 1573821 1.073820e-04
## 2459    Jeff Foust              policies   169 1573821 1.073820e-04
## 2460    Jeff Foust                raptor   169 1573821 1.073820e-04
## 2461    Jeff Foust             replacing   169 1573821 1.073820e-04
## 2462    Jeff Foust                social   169 1573821 1.073820e-04
## 2463    Jeff Foust                   tug   169 1573821 1.073820e-04
## 2464    Jeff Foust                volume   169 1573821 1.073820e-04
## 2465  Sandra Erwin               centaur   169  716353 2.359172e-04
## 2466  Sandra Erwin                direct   169  716353 2.359172e-04
## 2467  Sandra Erwin                  link   169  716353 2.359172e-04
## 2468  Sandra Erwin                   los   169  716353 2.359172e-04
## 2469  Sandra Erwin                submit   169  716353 2.359172e-04
## 2470  Sandra Erwin             wednesday   169  716353 2.359172e-04
## 2471    Jeff Foust          microgravity   168 1573821 1.067466e-04
## 2472    Jeff Foust                   san   168 1573821 1.067466e-04
## 2473    Jeff Foust                slated   168 1573821 1.067466e-04
## 2474  Sandra Erwin          department’s   168  716353 2.345212e-04
## 2475  Sandra Erwin              hundreds   168  716353 2.345212e-04
## 2476  Sandra Erwin              insisted   168  716353 2.345212e-04
## 2477  Sandra Erwin               michael   168  716353 2.345212e-04
## 2478  Sandra Erwin               seeking   168  716353 2.345212e-04
## 2479  Sandra Erwin                   sen   168  716353 2.345212e-04
## 2480  Sandra Erwin                signal   168  716353 2.345212e-04
## 2481    Jeff Foust               budgets   167 1573821 1.061112e-04
## 2482    Jeff Foust               cadence   167 1573821 1.061112e-04
## 2483    Jeff Foust               deorbit   167 1573821 1.061112e-04
## 2484    Jeff Foust                 giant   167 1573821 1.061112e-04
## 2485    Jeff Foust                guiana   167 1573821 1.061112e-04
## 2486    Jeff Foust                    lc   167 1573821 1.061112e-04
## 2487    Jeff Foust              supports   167 1573821 1.061112e-04
## 2488    Jeff Foust                 winds   167 1573821 1.061112e-04
## 2489  Sandra Erwin               article   167  716353 2.331253e-04
## 2490  Sandra Erwin              believes   167  716353 2.331253e-04
## 2491  Sandra Erwin               closely   167  716353 2.331253e-04
## 2492  Sandra Erwin           legislation   167  716353 2.331253e-04
## 2493  Sandra Erwin               managed   167  716353 2.331253e-04
## 2494    Jeff Foust               actions   166 1573821 1.054758e-04
## 2495    Jeff Foust            innovative   166 1573821 1.054758e-04
## 2496    Jeff Foust                 legal   166 1573821 1.054758e-04
## 2497    Jeff Foust               product   166 1573821 1.054758e-04
## 2498    Jeff Foust                  runs   166 1573821 1.054758e-04
## 2499    Jeff Foust               signals   166 1573821 1.054758e-04
## 2500  Sandra Erwin               founder   166  716353 2.317293e-04
## 2501    Jeff Foust               affairs   165 1573821 1.048404e-04
## 2502    Jeff Foust                answer   165 1573821 1.048404e-04
## 2503    Jeff Foust                choice   165 1573821 1.048404e-04
## 2504    Jeff Foust                common   165 1573821 1.048404e-04
## 2505    Jeff Foust         contributions   165 1573821 1.048404e-04
## 2506    Jeff Foust               descent   165 1573821 1.048404e-04
## 2507    Jeff Foust                double   165 1573821 1.048404e-04
## 2508    Jeff Foust                  gold   165 1573821 1.048404e-04
## 2509    Jeff Foust                masten   165 1573821 1.048404e-04
## 2510    Jeff Foust               mention   165 1573821 1.048404e-04
## 2511    Jeff Foust                 venus   165 1573821 1.048404e-04
## 2512  Sandra Erwin               angeles   165  716353 2.303334e-04
## 2513  Sandra Erwin           discussions   165  716353 2.303334e-04
## 2514  Sandra Erwin               january   165  716353 2.303334e-04
## 2515  Sandra Erwin               monitor   165  716353 2.303334e-04
## 2516  Sandra Erwin         professionals   165  716353 2.303334e-04
## 2517  Sandra Erwin                 rules   165  716353 2.303334e-04
## 2518  Sandra Erwin                 terms   165  716353 2.303334e-04
## 2519    Jeff Foust                    1b   164 1573821 1.042050e-04
## 2520    Jeff Foust             maneuvers   164 1573821 1.042050e-04
## 2521    Jeff Foust           preliminary   164 1573821 1.042050e-04
## 2522    Jeff Foust                reform   164 1573821 1.042050e-04
## 2523    Jeff Foust      responsibilities   164 1573821 1.042050e-04
## 2524    Jeff Foust                  sale   164 1573821 1.042050e-04
## 2525    Jeff Foust                  sets   164 1573821 1.042050e-04
## 2526    Jeff Foust              underway   164 1573821 1.042050e-04
## 2527    Jeff Foust                   wet   164 1573821 1.042050e-04
## 2528  Sandra Erwin             dedicated   164  716353 2.289374e-04
## 2529  Sandra Erwin             platforms   164  716353 2.289374e-04
## 2530  Sandra Erwin                 polar   164  716353 2.289374e-04
## 2531  Sandra Erwin                  stay   164  716353 2.289374e-04
## 2532  Sandra Erwin                 upper   164  716353 2.289374e-04
## 2533    Jeff Foust              bringing   163 1573821 1.035696e-04
## 2534    Jeff Foust               damaged   163 1573821 1.035696e-04
## 2535  Sandra Erwin           directorate   163  716353 2.275414e-04
## 2536  Sandra Erwin            facilities   163  716353 2.275414e-04
## 2537  Sandra Erwin              stations   163  716353 2.275414e-04
## 2538  Sandra Erwin                 tests   163  716353 2.275414e-04
## 2539    Jeff Foust               balloon   162 1573821 1.029342e-04
## 2540    Jeff Foust               causing   162 1573821 1.029342e-04
## 2541    Jeff Foust                 chain   162 1573821 1.029342e-04
## 2542    Jeff Foust                desire   162 1573821 1.029342e-04
## 2543    Jeff Foust              emphasis   162 1573821 1.029342e-04
## 2544    Jeff Foust             forecasts   162 1573821 1.029342e-04
## 2545    Jeff Foust                kepler   162 1573821 1.029342e-04
## 2546    Jeff Foust                 leave   162 1573821 1.029342e-04
## 2547    Jeff Foust             processes   162 1573821 1.029342e-04
## 2548    Jeff Foust             reference   162 1573821 1.029342e-04
## 2549    Jeff Foust              thinking   162 1573821 1.029342e-04
## 2550    Jeff Foust                 topic   162 1573821 1.029342e-04
## 2551    Jeff Foust                 visit   162 1573821 1.029342e-04
## 2552  Sandra Erwin              activity   162  716353 2.261455e-04
## 2553  Sandra Erwin               advance   162  716353 2.261455e-04
## 2554  Sandra Erwin           association   162  716353 2.261455e-04
## 2555  Sandra Erwin              compared   162  716353 2.261455e-04
## 2556  Sandra Erwin               counter   162  716353 2.261455e-04
## 2557  Sandra Erwin                legacy   162  716353 2.261455e-04
## 2558  Sandra Erwin                period   162  716353 2.261455e-04
## 2559  Sandra Erwin             portfolio   162  716353 2.261455e-04
## 2560  Sandra Erwin      responsibilities   162  716353 2.261455e-04
## 2561    Jeff Foust              assigned   161 1573821 1.022988e-04
## 2562    Jeff Foust                  jobs   161 1573821 1.022988e-04
## 2563    Jeff Foust             materials   161 1573821 1.022988e-04
## 2564    Jeff Foust                 multi   161 1573821 1.022988e-04
## 2565    Jeff Foust               pleased   161 1573821 1.022988e-04
## 2566    Jeff Foust               selling   161 1573821 1.022988e-04
## 2567    Jeff Foust                  wind   161 1573821 1.022988e-04
## 2568  Sandra Erwin           alternative   161  716353 2.247495e-04
## 2569  Sandra Erwin                 broad   161  716353 2.247495e-04
## 2570  Sandra Erwin                combat   161  716353 2.247495e-04
## 2571  Sandra Erwin                  hasc   161  716353 2.247495e-04
## 2572  Sandra Erwin                manage   161  716353 2.247495e-04
## 2573  Sandra Erwin                nasa’s   161  716353 2.247495e-04
## 2574  Sandra Erwin               science   161  716353 2.247495e-04
## 2575  Sandra Erwin               sharing   161  716353 2.247495e-04
## 2576  Sandra Erwin            supporting   161  716353 2.247495e-04
## 2577  Sandra Erwin                 takes   161  716353 2.247495e-04
## 2578    Jeff Foust              detailed   160 1573821 1.016634e-04
## 2579    Jeff Foust               jurczyk   160 1573821 1.016634e-04
## 2580    Jeff Foust                  live   160 1573821 1.016634e-04
## 2581    Jeff Foust              measures   160 1573821 1.016634e-04
## 2582    Jeff Foust           reusability   160 1573821 1.016634e-04
## 2583    Jeff Foust                  xcor   160 1573821 1.016634e-04
## 2584  Sandra Erwin              november   160  716353 2.233536e-04
## 2585  Sandra Erwin               virtual   160  716353 2.233536e-04
## 2586    Jeff Foust               antenna   159 1573821 1.010280e-04
## 2587    Jeff Foust                  dart   159 1573821 1.010280e-04
## 2588    Jeff Foust                 drive   159 1573821 1.010280e-04
## 2589    Jeff Foust                 entry   159 1573821 1.010280e-04
## 2590    Jeff Foust                german   159 1573821 1.010280e-04
## 2591    Jeff Foust               gravity   159 1573821 1.010280e-04
## 2592    Jeff Foust               lessons   159 1573821 1.010280e-04
## 2593    Jeff Foust              lifetime   159 1573821 1.010280e-04
## 2594    Jeff Foust                 owned   159 1573821 1.010280e-04
## 2595    Jeff Foust             permanent   159 1573821 1.010280e-04
## 2596    Jeff Foust                runway   159 1573821 1.010280e-04
## 2597  Sandra Erwin                airbus   159  716353 2.219576e-04
## 2598  Sandra Erwin         communication   159  716353 2.219576e-04
## 2599  Sandra Erwin                energy   159  716353 2.219576e-04
## 2600  Sandra Erwin               machine   159  716353 2.219576e-04
## 2601    Jeff Foust              coverage   158 1573821 1.003926e-04
## 2602    Jeff Foust               devoted   158 1573821 1.003926e-04
## 2603    Jeff Foust                    eu   158 1573821 1.003926e-04
## 2604    Jeff Foust               finding   158 1573821 1.003926e-04
## 2605    Jeff Foust                 fleet   158 1573821 1.003926e-04
## 2606    Jeff Foust                 happy   158 1573821 1.003926e-04
## 2607    Jeff Foust                 maxar   158 1573821 1.003926e-04
## 2608    Jeff Foust                   ppe   158 1573821 1.003926e-04
## 2609    Jeff Foust               spaceil   158 1573821 1.003926e-04
## 2610    Jeff Foust                threat   158 1573821 1.003926e-04
## 2611  Sandra Erwin                option   158  716353 2.205617e-04
## 2612  Sandra Erwin               respond   158  716353 2.205617e-04
## 2613    Jeff Foust                  city   157 1573821 9.975722e-05
## 2614    Jeff Foust              enabling   157 1573821 9.975722e-05
## 2615    Jeff Foust                   iac   157 1573821 9.975722e-05
## 2616    Jeff Foust              pursuing   157 1573821 9.975722e-05
## 2617    Jeff Foust                 rapid   157 1573821 9.975722e-05
## 2618    Jeff Foust             requiring   157 1573821 9.975722e-05
## 2619    Jeff Foust              unveiled   157 1573821 9.975722e-05
## 2620  Sandra Erwin                chiefs   157  716353 2.191657e-04
## 2621  Sandra Erwin              combined   157  716353 2.191657e-04
## 2622  Sandra Erwin                 human   157  716353 2.191657e-04
## 2623  Sandra Erwin        transportation   157  716353 2.191657e-04
## 2624    Jeff Foust            absolutely   156 1573821 9.912182e-05
## 2625    Jeff Foust                 brian   156 1573821 9.912182e-05
## 2626    Jeff Foust                carbon   156 1573821 9.912182e-05
## 2627    Jeff Foust           combination   156 1573821 9.912182e-05
## 2628    Jeff Foust                  doug   156 1573821 9.912182e-05
## 2629    Jeff Foust            enterprise   156 1573821 9.912182e-05
## 2630    Jeff Foust               force’s   156 1573821 9.912182e-05
## 2631    Jeff Foust                 frank   156 1573821 9.912182e-05
## 2632    Jeff Foust                  hand   156 1573821 9.912182e-05
## 2633    Jeff Foust                 paris   156 1573821 9.912182e-05
## 2634    Jeff Foust             reduction   156 1573821 9.912182e-05
## 2635    Jeff Foust            reiterated   156 1573821 9.912182e-05
## 2636    Jeff Foust              revealed   156 1573821 9.912182e-05
## 2637    Jeff Foust                  sold   156 1573821 9.912182e-05
## 2638    Jeff Foust            telescopes   156 1573821 9.912182e-05
## 2639  Sandra Erwin              document   156  716353 2.177697e-04
## 2640  Sandra Erwin              peterson   156  716353 2.177697e-04
## 2641    Jeff Foust               chapter   155 1573821 9.848642e-05
## 2642    Jeff Foust             insurance   155 1573821 9.848642e-05
## 2643    Jeff Foust              licensed   155 1573821 9.848642e-05
## 2644    Jeff Foust             logistics   155 1573821 9.848642e-05
## 2645  Sandra Erwin            foundation   155  716353 2.163738e-04
## 2646  Sandra Erwin               jamming   155  716353 2.163738e-04
## 2647  Sandra Erwin              pandemic   155  716353 2.163738e-04
## 2648  Sandra Erwin              russia’s   155  716353 2.163738e-04
## 2649  Sandra Erwin               unified   155  716353 2.163738e-04
## 2650    Jeff Foust                  belt   154 1573821 9.785103e-05
## 2651    Jeff Foust             competing   154 1573821 9.785103e-05
## 2652    Jeff Foust              internet   154 1573821 9.785103e-05
## 2653    Jeff Foust                 laser   154 1573821 9.785103e-05
## 2654    Jeff Foust          manufacturer   154 1573821 9.785103e-05
## 2655    Jeff Foust         participation   154 1573821 9.785103e-05
## 2656    Jeff Foust              vertical   154 1573821 9.785103e-05
## 2657  Sandra Erwin                cooper   154  716353 2.149778e-04
## 2658  Sandra Erwin                  list   154  716353 2.149778e-04
## 2659  Sandra Erwin               primary   154  716353 2.149778e-04
## 2660  Sandra Erwin                  rely   154  716353 2.149778e-04
## 2661  Sandra Erwin             workforce   154  716353 2.149778e-04
## 2662    Jeff Foust               applied   153 1573821 9.721563e-05
## 2663    Jeff Foust             australia   153 1573821 9.721563e-05
## 2664    Jeff Foust                 broad   153 1573821 9.721563e-05
## 2665    Jeff Foust                county   153 1573821 9.721563e-05
## 2666    Jeff Foust          interference   153 1573821 9.721563e-05
## 2667    Jeff Foust                kuiper   153 1573821 9.721563e-05
## 2668    Jeff Foust                   mda   153 1573821 9.721563e-05
## 2669    Jeff Foust          negotiations   153 1573821 9.721563e-05
## 2670    Jeff Foust             practices   153 1573821 9.721563e-05
## 2671    Jeff Foust             producing   153 1573821 9.721563e-05
## 2672    Jeff Foust                   rfi   153 1573821 9.721563e-05
## 2673    Jeff Foust               seattle   153 1573821 9.721563e-05
## 2674    Jeff Foust             uncertain   153 1573821 9.721563e-05
## 2675  Sandra Erwin             estimated   153  716353 2.135819e-04
## 2676  Sandra Erwin                 ideas   153  716353 2.135819e-04
## 2677  Sandra Erwin                  lift   153  716353 2.135819e-04
## 2678  Sandra Erwin                 piece   153  716353 2.135819e-04
## 2679  Sandra Erwin                reason   153  716353 2.135819e-04
## 2680    Jeff Foust              explorer   152 1573821 9.658023e-05
## 2681    Jeff Foust                   gen   152 1573821 9.658023e-05
## 2682    Jeff Foust         modifications   152 1573821 9.658023e-05
## 2683    Jeff Foust                  ntsb   152 1573821 9.658023e-05
## 2684    Jeff Foust             radiation   152 1573821 9.658023e-05
## 2685    Jeff Foust                   ran   152 1573821 9.658023e-05
## 2686    Jeff Foust                remove   152 1573821 9.658023e-05
## 2687    Jeff Foust                rights   152 1573821 9.658023e-05
## 2688    Jeff Foust                 stars   152 1573821 9.658023e-05
## 2689    Jeff Foust               twitter   152 1573821 9.658023e-05
## 2690    Jeff Foust                  york   152 1573821 9.658023e-05
## 2691  Sandra Erwin                active   152  716353 2.121859e-04
## 2692  Sandra Erwin                  fill   152  716353 2.121859e-04
## 2693  Sandra Erwin            monitoring   152  716353 2.121859e-04
## 2694  Sandra Erwin              oversees   152  716353 2.121859e-04
## 2695  Sandra Erwin               perform   152  716353 2.121859e-04
## 2696  Sandra Erwin               players   152  716353 2.121859e-04
## 2697  Sandra Erwin                  york   152  716353 2.121859e-04
## 2698    Jeff Foust                 break   151 1573821 9.594484e-05
## 2699    Jeff Foust                  fill   151 1573821 9.594484e-05
## 2700    Jeff Foust               monitor   151 1573821 9.594484e-05
## 2701    Jeff Foust                  peak   151 1573821 9.594484e-05
## 2702    Jeff Foust               signing   151 1573821 9.594484e-05
## 2703  Sandra Erwin               alabama   151  716353 2.107899e-04
## 2704  Sandra Erwin          commercially   151  716353 2.107899e-04
## 2705  Sandra Erwin                expand   151  716353 2.107899e-04
## 2706  Sandra Erwin                  fuel   151  716353 2.107899e-04
## 2707  Sandra Erwin                oneweb   151  716353 2.107899e-04
## 2708  Sandra Erwin                 panel   151  716353 2.107899e-04
## 2709  Sandra Erwin               receive   151  716353 2.107899e-04
## 2710  Sandra Erwin            resilience   151  716353 2.107899e-04
## 2711  Sandra Erwin        responsibility   151  716353 2.107899e-04
## 2712    Jeff Foust              capstone   150 1573821 9.530944e-05
## 2713    Jeff Foust             commander   150 1573821 9.530944e-05
## 2714    Jeff Foust          commercially   150 1573821 9.530944e-05
## 2715    Jeff Foust               dropped   150 1573821 9.530944e-05
## 2716    Jeff Foust              election   150 1573821 9.530944e-05
## 2717    Jeff Foust             frontiers   150 1573821 9.530944e-05
## 2718    Jeff Foust                harris   150 1573821 9.530944e-05
## 2719    Jeff Foust               holding   150 1573821 9.530944e-05
## 2720    Jeff Foust           utilization   150 1573821 9.530944e-05
## 2721  Sandra Erwin                  grow   150  716353 2.093940e-04
## 2722  Sandra Erwin                hybrid   150  716353 2.093940e-04
## 2723  Sandra Erwin             protected   150  716353 2.093940e-04
## 2724    Jeff Foust               galileo   149 1573821 9.467404e-05
## 2725    Jeff Foust                hoping   149 1573821 9.467404e-05
## 2726    Jeff Foust                 kathy   149 1573821 9.467404e-05
## 2727    Jeff Foust                panels   149 1573821 9.467404e-05
## 2728    Jeff Foust                 paper   149 1573821 9.467404e-05
## 2729    Jeff Foust                  pole   149 1573821 9.467404e-05
## 2730    Jeff Foust              rejected   149 1573821 9.467404e-05
## 2731    Jeff Foust                sunday   149 1573821 9.467404e-05
## 2732  Sandra Erwin                action   149  716353 2.079980e-04
## 2733  Sandra Erwin            commanders   149  716353 2.079980e-04
## 2734  Sandra Erwin             concerned   149  716353 2.079980e-04
## 2735  Sandra Erwin                   maj   149  716353 2.079980e-04
## 2736  Sandra Erwin             requested   149  716353 2.079980e-04
## 2737    Jeff Foust                 ellis   148 1573821 9.403865e-05
## 2738    Jeff Foust              happened   148 1573821 9.403865e-05
## 2739    Jeff Foust              property   148 1573821 9.403865e-05
## 2740    Jeff Foust         qualification   148 1573821 9.403865e-05
## 2741    Jeff Foust             timeframe   148 1573821 9.403865e-05
## 2742  Sandra Erwin               broader   148  716353 2.066021e-04
## 2743  Sandra Erwin              domestic   148  716353 2.066021e-04
## 2744  Sandra Erwin             happening   148  716353 2.066021e-04
## 2745  Sandra Erwin                   ocx   148  716353 2.066021e-04
## 2746  Sandra Erwin          procurements   148  716353 2.066021e-04
## 2747  Sandra Erwin                 reach   148  716353 2.066021e-04
## 2748  Sandra Erwin              standing   148  716353 2.066021e-04
## 2749  Sandra Erwin                  wing   148  716353 2.066021e-04
## 2750    Jeff Foust                   ala   147 1573821 9.340325e-05
## 2751    Jeff Foust                arrive   147 1573821 9.340325e-05
## 2752    Jeff Foust                bigger   147 1573821 9.340325e-05
## 2753    Jeff Foust             certified   147 1573821 9.340325e-05
## 2754    Jeff Foust             component   147 1573821 9.340325e-05
## 2755    Jeff Foust                  pair   147 1573821 9.340325e-05
## 2756    Jeff Foust              powerful   147 1573821 9.340325e-05
## 2757    Jeff Foust             predicted   147 1573821 9.340325e-05
## 2758  Sandra Erwin              addition   147  716353 2.052061e-04
## 2759  Sandra Erwin                  code   147  716353 2.052061e-04
## 2760  Sandra Erwin                 frank   147  716353 2.052061e-04
## 2761  Sandra Erwin                  wide   147  716353 2.052061e-04
## 2762    Jeff Foust                   ar1   146 1573821 9.276786e-05
## 2763    Jeff Foust            businesses   146 1573821 9.276786e-05
## 2764    Jeff Foust                buying   146 1573821 9.276786e-05
## 2765    Jeff Foust             condition   146 1573821 9.276786e-05
## 2766    Jeff Foust                  drop   146 1573821 9.276786e-05
## 2767    Jeff Foust                firing   146 1573821 9.276786e-05
## 2768    Jeff Foust                  flow   146 1573821 9.276786e-05
## 2769    Jeff Foust              nextstep   146 1573821 9.276786e-05
## 2770    Jeff Foust                  pose   146 1573821 9.276786e-05
## 2771    Jeff Foust            procedures   146 1573821 9.276786e-05
## 2772    Jeff Foust               pushing   146 1573821 9.276786e-05
## 2773    Jeff Foust               springs   146 1573821 9.276786e-05
## 2774    Jeff Foust                 tanks   146 1573821 9.276786e-05
## 2775    Jeff Foust                viasat   146 1573821 9.276786e-05
## 2776  Sandra Erwin             competing   146  716353 2.038101e-04
## 2777  Sandra Erwin               offered   146  716353 2.038101e-04
## 2778  Sandra Erwin                  play   146  716353 2.038101e-04
## 2779  Sandra Erwin                raised   146  716353 2.038101e-04
## 2780  Sandra Erwin                reduce   146  716353 2.038101e-04
## 2781  Sandra Erwin                  shaw   146  716353 2.038101e-04
## 2782  Sandra Erwin          spokesperson   146  716353 2.038101e-04
## 2783  Sandra Erwin               talking   146  716353 2.038101e-04
## 2784  Sandra Erwin              terminal   146  716353 2.038101e-04
## 2785  Sandra Erwin                 types   146  716353 2.038101e-04
## 2786  Sandra Erwin                weapon   146  716353 2.038101e-04
## 2787    Jeff Foust               century   145 1573821 9.213246e-05
## 2788    Jeff Foust               china’s   145 1573821 9.213246e-05
## 2789    Jeff Foust             professor   145 1573821 9.213246e-05
## 2790    Jeff Foust               sharing   145 1573821 9.213246e-05
## 2791  Sandra Erwin               comment   145  716353 2.024142e-04
## 2792  Sandra Erwin             financial   145  716353 2.024142e-04
## 2793  Sandra Erwin                  main   145  716353 2.024142e-04
## 2794  Sandra Erwin               product   145  716353 2.024142e-04
## 2795  Sandra Erwin                 total   145  716353 2.024142e-04
## 2796    Jeff Foust            background   144 1573821 9.149706e-05
## 2797    Jeff Foust                dozens   144 1573821 9.149706e-05
## 2798    Jeff Foust                family   144 1573821 9.149706e-05
## 2799    Jeff Foust                 front   144 1573821 9.149706e-05
## 2800    Jeff Foust              replaced   144 1573821 9.149706e-05
## 2801    Jeff Foust             reviewing   144 1573821 9.149706e-05
## 2802    Jeff Foust               subject   144 1573821 9.149706e-05
## 2803    Jeff Foust                  tess   144 1573821 9.149706e-05
## 2804  Sandra Erwin                   atk   144  716353 2.010182e-04
## 2805  Sandra Erwin              division   144  716353 2.010182e-04
## 2806  Sandra Erwin                flying   144  716353 2.010182e-04
## 2807  Sandra Erwin               retired   144  716353 2.010182e-04
## 2808  Sandra Erwin                 spend   144  716353 2.010182e-04
## 2809  Sandra Erwin              supports   144  716353 2.010182e-04
## 2810    Jeff Foust              blacksky   143 1573821 9.086167e-05
## 2811    Jeff Foust            democratic   143 1573821 9.086167e-05
## 2812    Jeff Foust             efficient   143 1573821 9.086167e-05
## 2813    Jeff Foust                equity   143 1573821 9.086167e-05
## 2814    Jeff Foust            federation   143 1573821 9.086167e-05
## 2815    Jeff Foust               located   143 1573821 9.086167e-05
## 2816    Jeff Foust                  memo   143 1573821 9.086167e-05
## 2817    Jeff Foust                scaled   143 1573821 9.086167e-05
## 2818    Jeff Foust                  utah   143 1573821 9.086167e-05
## 2819  Sandra Erwin               analyze   143  716353 1.996223e-04
## 2820  Sandra Erwin               appears   143  716353 1.996223e-04
## 2821  Sandra Erwin               benefit   143  716353 1.996223e-04
## 2822  Sandra Erwin                   jim   143  716353 1.996223e-04
## 2823  Sandra Erwin            persistent   143  716353 1.996223e-04
## 2824  Sandra Erwin                   sea   143  716353 1.996223e-04
## 2825  Sandra Erwin                  slow   143  716353 1.996223e-04
## 2826    Jeff Foust               acquire   142 1573821 9.022627e-05
## 2827    Jeff Foust                cancel   142 1573821 9.022627e-05
## 2828    Jeff Foust              cornwall   142 1573821 9.022627e-05
## 2829    Jeff Foust                 fixed   142 1573821 9.022627e-05
## 2830    Jeff Foust            habitation   142 1573821 9.022627e-05
## 2831    Jeff Foust              invested   142 1573821 9.022627e-05
## 2832    Jeff Foust                    md   142 1573821 9.022627e-05
## 2833    Jeff Foust            statements   142 1573821 9.022627e-05
## 2834    Jeff Foust           termination   142 1573821 9.022627e-05
## 2835    Jeff Foust                widely   142 1573821 9.022627e-05
## 2836  Sandra Erwin                answer   142  716353 1.982263e-04
## 2837  Sandra Erwin              behavior   142  716353 1.982263e-04
## 2838  Sandra Erwin              commands   142  716353 1.982263e-04
## 2839  Sandra Erwin             contested   142  716353 1.982263e-04
## 2840  Sandra Erwin              included   142  716353 1.982263e-04
## 2841  Sandra Erwin                 sense   142  716353 1.982263e-04
## 2842  Sandra Erwin                  type   142  716353 1.982263e-04
## 2843    Jeff Foust              attitude   141 1573821 8.959087e-05
## 2844    Jeff Foust                 babin   141 1573821 8.959087e-05
## 2845    Jeff Foust         bridenstine’s   141 1573821 8.959087e-05
## 2846    Jeff Foust            evaluation   141 1573821 8.959087e-05
## 2847    Jeff Foust              forecast   141 1573821 8.959087e-05
## 2848    Jeff Foust                 glaze   141 1573821 8.959087e-05
## 2849    Jeff Foust                  halo   141 1573821 8.959087e-05
## 2850    Jeff Foust              planet’s   141 1573821 8.959087e-05
## 2851    Jeff Foust               sensors   141 1573821 8.959087e-05
## 2852  Sandra Erwin               actions   141  716353 1.968303e-04
## 2853  Sandra Erwin                 brown   141  716353 1.968303e-04
## 2854  Sandra Erwin                 carry   141  716353 1.968303e-04
## 2855  Sandra Erwin             detection   141  716353 1.968303e-04
## 2856  Sandra Erwin                  gbsd   141  716353 1.968303e-04
## 2857  Sandra Erwin                  land   141  716353 1.968303e-04
## 2858  Sandra Erwin                   rfp   141  716353 1.968303e-04
## 2859    Jeff Foust          accompanying   140 1573821 8.895548e-05
## 2860    Jeff Foust                  asap   140 1573821 8.895548e-05
## 2861    Jeff Foust             basically   140 1573821 8.895548e-05
## 2862    Jeff Foust                 beach   140 1573821 8.895548e-05
## 2863    Jeff Foust          cancellation   140 1573821 8.895548e-05
## 2864    Jeff Foust               finally   140 1573821 8.895548e-05
## 2865    Jeff Foust                forced   140 1573821 8.895548e-05
## 2866    Jeff Foust        investigations   140 1573821 8.895548e-05
## 2867    Jeff Foust              reliable   140 1573821 8.895548e-05
## 2868    Jeff Foust            satellogic   140 1573821 8.895548e-05
## 2869    Jeff Foust              saturday   140 1573821 8.895548e-05
## 2870    Jeff Foust                shield   140 1573821 8.895548e-05
## 2871    Jeff Foust                unlike   140 1573821 8.895548e-05
## 2872    Jeff Foust              upgrades   140 1573821 8.895548e-05
## 2873    Jeff Foust                 wings   140 1573821 8.895548e-05
## 2874    Jeff Foust               worried   140 1573821 8.895548e-05
## 2875  Sandra Erwin                amount   140  716353 1.954344e-04
## 2876  Sandra Erwin                common   140  716353 1.954344e-04
## 2877  Sandra Erwin                  deep   140  716353 1.954344e-04
## 2878  Sandra Erwin               lamborn   140  716353 1.954344e-04
## 2879  Sandra Erwin                   mid   140  716353 1.954344e-04
## 2880  Sandra Erwin             oversight   140  716353 1.954344e-04
## 2881  Sandra Erwin           president’s   140  716353 1.954344e-04
## 2882  Sandra Erwin                 seeks   140  716353 1.954344e-04
## 2883    Jeff Foust               arguing   139 1573821 8.832008e-05
## 2884    Jeff Foust               claimed   139 1573821 8.832008e-05
## 2885    Jeff Foust                 floor   139 1573821 8.832008e-05
## 2886    Jeff Foust             kilometer   139 1573821 8.832008e-05
## 2887    Jeff Foust             knowledge   139 1573821 8.832008e-05
## 2888    Jeff Foust              workshop   139 1573821 8.832008e-05
## 2889  Sandra Erwin               budgets   139  716353 1.940384e-04
## 2890  Sandra Erwin            deployment   139  716353 1.940384e-04
## 2891  Sandra Erwin                  edge   139  716353 1.940384e-04
## 2892  Sandra Erwin                friday   139  716353 1.940384e-04
## 2893  Sandra Erwin                  held   139  716353 1.940384e-04
## 2894  Sandra Erwin                   mix   139  716353 1.940384e-04
## 2895  Sandra Erwin                   nc3   139  716353 1.940384e-04
## 2896  Sandra Erwin                pretty   139  716353 1.940384e-04
## 2897  Sandra Erwin            rocketdyne   139  716353 1.940384e-04
## 2898    Jeff Foust                 agree   138 1573821 8.768469e-05
## 2899    Jeff Foust                  asat   138 1573821 8.768469e-05
## 2900    Jeff Foust                 casis   138 1573821 8.768469e-05
## 2901    Jeff Foust                charge   138 1573821 8.768469e-05
## 2902    Jeff Foust            consistent   138 1573821 8.768469e-05
## 2903    Jeff Foust            cosmodrome   138 1573821 8.768469e-05
## 2904    Jeff Foust               dealing   138 1573821 8.768469e-05
## 2905    Jeff Foust             departure   138 1573821 8.768469e-05
## 2906    Jeff Foust             documents   138 1573821 8.768469e-05
## 2907    Jeff Foust           forecasting   138 1573821 8.768469e-05
## 2908    Jeff Foust                 image   138 1573821 8.768469e-05
## 2909    Jeff Foust          increasingly   138 1573821 8.768469e-05
## 2910    Jeff Foust                metric   138 1573821 8.768469e-05
## 2911    Jeff Foust         observatories   138 1573821 8.768469e-05
## 2912    Jeff Foust               removal   138 1573821 8.768469e-05
## 2913    Jeff Foust                   ssl   138 1573821 8.768469e-05
## 2914    Jeff Foust                ticket   138 1573821 8.768469e-05
## 2915    Jeff Foust               voyager   138 1573821 8.768469e-05
## 2916    Jeff Foust                 wrong   138 1573821 8.768469e-05
## 2917  Sandra Erwin                crisis   138  716353 1.926425e-04
## 2918  Sandra Erwin                   fcc   138  716353 1.926425e-04
## 2919  Sandra Erwin          manufacturer   138  716353 1.926425e-04
## 2920  Sandra Erwin                 moved   138  716353 1.926425e-04
## 2921  Sandra Erwin                 risks   138  716353 1.926425e-04
## 2922  Sandra Erwin              virginia   138  716353 1.926425e-04
## 2923    Jeff Foust          alternatives   137 1573821 8.704929e-05
## 2924    Jeff Foust             batteries   137 1573821 8.704929e-05
## 2925    Jeff Foust                  dawn   137 1573821 8.704929e-05
## 2926    Jeff Foust              detected   137 1573821 8.704929e-05
## 2927    Jeff Foust                  easy   137 1573821 8.704929e-05
## 2928    Jeff Foust             emergency   137 1573821 8.704929e-05
## 2929    Jeff Foust            galactic’s   137 1573821 8.704929e-05
## 2930    Jeff Foust           maintenance   137 1573821 8.704929e-05
## 2931    Jeff Foust                   mix   137 1573821 8.704929e-05
## 2932    Jeff Foust           necessarily   137 1573821 8.704929e-05
## 2933    Jeff Foust              personal   137 1573821 8.704929e-05
## 2934    Jeff Foust              possibly   137 1573821 8.704929e-05
## 2935    Jeff Foust                 viper   137 1573821 8.704929e-05
## 2936    Jeff Foust                year’s   137 1573821 8.704929e-05
## 2937  Sandra Erwin            considered   137  716353 1.912465e-04
## 2938  Sandra Erwin                  lack   137  716353 1.912465e-04
## 2939  Sandra Erwin                   mda   137  716353 1.912465e-04
## 2940  Sandra Erwin               reality   137  716353 1.912465e-04
## 2941  Sandra Erwin                record   137  716353 1.912465e-04
## 2942  Sandra Erwin                  sasc   137  716353 1.912465e-04
## 2943  Sandra Erwin          specifically   137  716353 1.912465e-04
## 2944    Jeff Foust               alabama   136 1573821 8.641389e-05
## 2945    Jeff Foust             ambitious   136 1573821 8.641389e-05
## 2946    Jeff Foust          availability   136 1573821 8.641389e-05
## 2947    Jeff Foust            completely   136 1573821 8.641389e-05
## 2948    Jeff Foust               exomars   136 1573821 8.641389e-05
## 2949    Jeff Foust              focusing   136 1573821 8.641389e-05
## 2950    Jeff Foust               india’s   136 1573821 8.641389e-05
## 2951    Jeff Foust              involves   136 1573821 8.641389e-05
## 2952    Jeff Foust                 items   136 1573821 8.641389e-05
## 2953    Jeff Foust               pricing   136 1573821 8.641389e-05
## 2954    Jeff Foust           projections   136 1573821 8.641389e-05
## 2955    Jeff Foust                 proud   136 1573821 8.641389e-05
## 2956    Jeff Foust                shared   136 1573821 8.641389e-05
## 2957  Sandra Erwin               prepare   136  716353 1.898505e-04
## 2958  Sandra Erwin            processing   136  716353 1.898505e-04
## 2959  Sandra Erwin              thursday   136  716353 1.898505e-04
## 2960    Jeff Foust                   abl   135 1573821 8.577850e-05
## 2961    Jeff Foust              advocate   135 1573821 8.577850e-05
## 2962    Jeff Foust               behnken   135 1573821 8.577850e-05
## 2963    Jeff Foust                  eric   135 1573821 8.577850e-05
## 2964    Jeff Foust          expectations   135 1573821 8.577850e-05
## 2965    Jeff Foust               haven’t   135 1573821 8.577850e-05
## 2966    Jeff Foust              mitigate   135 1573821 8.577850e-05
## 2967    Jeff Foust              outlined   135 1573821 8.577850e-05
## 2968    Jeff Foust                  roll   135 1573821 8.577850e-05
## 2969    Jeff Foust                talked   135 1573821 8.577850e-05
## 2970    Jeff Foust             thousands   135 1573821 8.577850e-05
## 2971    Jeff Foust                  wave   135 1573821 8.577850e-05
## 2972  Sandra Erwin               intends   135  716353 1.884546e-04
## 2973  Sandra Erwin             operation   135  716353 1.884546e-04
## 2974  Sandra Erwin                pushed   135  716353 1.884546e-04
## 2975  Sandra Erwin                safety   135  716353 1.884546e-04
## 2976  Sandra Erwin                warned   135  716353 1.884546e-04
## 2977    Jeff Foust               cameras   134 1573821 8.514310e-05
## 2978    Jeff Foust         collaboration   134 1573821 8.514310e-05
## 2979    Jeff Foust                  edge   134 1573821 8.514310e-05
## 2980    Jeff Foust                 forum   134 1573821 8.514310e-05
## 2981    Jeff Foust                 hoped   134 1573821 8.514310e-05
## 2982    Jeff Foust              leverage   134 1573821 8.514310e-05
## 2983    Jeff Foust                markup   134 1573821 8.514310e-05
## 2984    Jeff Foust            opposition   134 1573821 8.514310e-05
## 2985    Jeff Foust                photon   134 1573821 8.514310e-05
## 2986    Jeff Foust               physics   134 1573821 8.514310e-05
## 2987    Jeff Foust                  root   134 1573821 8.514310e-05
## 2988  Sandra Erwin             certified   134  716353 1.870586e-04
## 2989  Sandra Erwin                 deter   134  716353 1.870586e-04
## 2990  Sandra Erwin                 pence   134  716353 1.870586e-04
## 2991  Sandra Erwin             standards   134  716353 1.870586e-04
## 2992  Sandra Erwin            warfighter   134  716353 1.870586e-04
## 2993    Jeff Foust               comstac   133 1573821 8.450770e-05
## 2994    Jeff Foust          conventional   133 1573821 8.450770e-05
## 2995    Jeff Foust              eligible   133 1573821 8.450770e-05
## 2996    Jeff Foust          participants   133 1573821 8.450770e-05
## 2997    Jeff Foust                pilots   133 1573821 8.450770e-05
## 2998    Jeff Foust              reaction   133 1573821 8.450770e-05
## 2999    Jeff Foust             refueling   133 1573821 8.450770e-05
## 3000    Jeff Foust                thales   133 1573821 8.450770e-05
## 3001    Jeff Foust               they’ve   133 1573821 8.450770e-05
## 3002  Sandra Erwin               discuss   133  716353 1.856627e-04
## 3003  Sandra Erwin                  fall   133  716353 1.856627e-04
## 3004  Sandra Erwin                monday   133  716353 1.856627e-04
## 3005  Sandra Erwin                viasat   133  716353 1.856627e-04
## 3006    Jeff Foust            australian   132 1573821 8.387231e-05
## 3007    Jeff Foust              creation   132 1573821 8.387231e-05
## 3008    Jeff Foust                  dust   132 1573821 8.387231e-05
## 3009    Jeff Foust               experts   132 1573821 8.387231e-05
## 3010    Jeff Foust               helping   132 1573821 8.387231e-05
## 3011    Jeff Foust               loverro   132 1573821 8.387231e-05
## 3012    Jeff Foust              millions   132 1573821 8.387231e-05
## 3013    Jeff Foust               package   132 1573821 8.387231e-05
## 3014    Jeff Foust                 pluto   132 1573821 8.387231e-05
## 3015    Jeff Foust              produced   132 1573821 8.387231e-05
## 3016  Sandra Erwin              changing   132  716353 1.842667e-04
## 3017  Sandra Erwin             effective   132  716353 1.842667e-04
## 3018  Sandra Erwin            evaluation   132  716353 1.842667e-04
## 3019  Sandra Erwin                 north   132  716353 1.842667e-04
## 3020  Sandra Erwin                 omega   132  716353 1.842667e-04
## 3021  Sandra Erwin               reports   132  716353 1.842667e-04
## 3022  Sandra Erwin                result   132  716353 1.842667e-04
## 3023  Sandra Erwin                summer   132  716353 1.842667e-04
## 3024    Jeff Foust           conjunction   131 1573821 8.323691e-05
## 3025    Jeff Foust              contrast   131 1573821 8.323691e-05
## 3026    Jeff Foust                 email   131 1573821 8.323691e-05
## 3027    Jeff Foust                 faced   131 1573821 8.323691e-05
## 3028    Jeff Foust                hiring   131 1573821 8.323691e-05
## 3029    Jeff Foust            huntsville   131 1573821 8.323691e-05
## 3030    Jeff Foust           inclination   131 1573821 8.323691e-05
## 3031    Jeff Foust                kodiak   131 1573821 8.323691e-05
## 3032    Jeff Foust               pegasus   131 1573821 8.323691e-05
## 3033    Jeff Foust               portion   131 1573821 8.323691e-05
## 3034    Jeff Foust                   ssa   131 1573821 8.323691e-05
## 3035    Jeff Foust              thompson   131 1573821 8.323691e-05
## 3036    Jeff Foust               webinar   131 1573821 8.323691e-05
## 3037  Sandra Erwin              assigned   131  716353 1.828707e-04
## 3038  Sandra Erwin                charge   131  716353 1.828707e-04
## 3039  Sandra Erwin                 fixed   131  716353 1.828707e-04
## 3040  Sandra Erwin             investing   131  716353 1.828707e-04
## 3041  Sandra Erwin                  lane   131  716353 1.828707e-04
## 3042  Sandra Erwin                 lunar   131  716353 1.828707e-04
## 3043  Sandra Erwin             refueling   131  716353 1.828707e-04
## 3044  Sandra Erwin             thousands   131  716353 1.828707e-04
## 3045  Sandra Erwin         understanding   131  716353 1.828707e-04
## 3046    Jeff Foust           contributed   130 1573821 8.260152e-05
## 3047    Jeff Foust                 cycle   130 1573821 8.260152e-05
## 3048    Jeff Foust                draper   130 1573821 8.260152e-05
## 3049    Jeff Foust           incorporate   130 1573821 8.260152e-05
## 3050    Jeff Foust                paying   130 1573821 8.260152e-05
## 3051    Jeff Foust               slipped   130 1573821 8.260152e-05
## 3052    Jeff Foust              southern   130 1573821 8.260152e-05
## 3053    Jeff Foust               trading   130 1573821 8.260152e-05
## 3054    Jeff Foust            tremendous   130 1573821 8.260152e-05
## 3055  Sandra Erwin                 agile   130  716353 1.814748e-04
## 3056  Sandra Erwin            assessment   130  716353 1.814748e-04
## 3057  Sandra Erwin             direction   130  716353 1.814748e-04
## 3058  Sandra Erwin                  eelv   130  716353 1.814748e-04
## 3059  Sandra Erwin                 outer   130  716353 1.814748e-04
## 3060  Sandra Erwin              previous   130  716353 1.814748e-04
## 3061  Sandra Erwin                 sites   130  716353 1.814748e-04
## 3062    Jeff Foust            addressing   129 1573821 8.196612e-05
## 3063    Jeff Foust               auction   129 1573821 8.196612e-05
## 3064    Jeff Foust              behavior   129 1573821 8.196612e-05
## 3065    Jeff Foust                  body   129 1573821 8.196612e-05
## 3066    Jeff Foust                column   129 1573821 8.196612e-05
## 3067    Jeff Foust                easier   129 1573821 8.196612e-05
## 3068    Jeff Foust             observing   129 1573821 8.196612e-05
## 3069    Jeff Foust                pieces   129 1573821 8.196612e-05
## 3070    Jeff Foust                played   129 1573821 8.196612e-05
## 3071    Jeff Foust                posted   129 1573821 8.196612e-05
## 3072    Jeff Foust               redwire   129 1573821 8.196612e-05
## 3073    Jeff Foust            regulation   129 1573821 8.196612e-05
## 3074    Jeff Foust              requests   129 1573821 8.196612e-05
## 3075  Sandra Erwin         approximately   129  716353 1.800788e-04
## 3076  Sandra Erwin               country   129  716353 1.800788e-04
## 3077  Sandra Erwin             essential   129  716353 1.800788e-04
## 3078  Sandra Erwin                   jam   129  716353 1.800788e-04
## 3079  Sandra Erwin              operator   129  716353 1.800788e-04
## 3080  Sandra Erwin               oversee   129  716353 1.800788e-04
## 3081    Jeff Foust             attempted   128 1573821 8.133072e-05
## 3082    Jeff Foust               entered   128 1573821 8.133072e-05
## 3083    Jeff Foust               explore   128 1573821 8.133072e-05
## 3084    Jeff Foust                noaa’s   128 1573821 8.133072e-05
## 3085    Jeff Foust                 piece   128 1573821 8.133072e-05
## 3086    Jeff Foust                  pslv   128 1573821 8.133072e-05
## 3087    Jeff Foust           rescheduled   128 1573821 8.133072e-05
## 3088    Jeff Foust            responsive   128 1573821 8.133072e-05
## 3089    Jeff Foust                 stake   128 1573821 8.133072e-05
## 3090    Jeff Foust              students   128 1573821 8.133072e-05
## 3091  Sandra Erwin                chance   128  716353 1.786829e-04
## 3092  Sandra Erwin                  post   128  716353 1.786829e-04
## 3093  Sandra Erwin                 scale   128  716353 1.786829e-04
## 3094  Sandra Erwin                  site   128  716353 1.786829e-04
## 3095  Sandra Erwin              smallsat   128  716353 1.786829e-04
## 3096    Jeff Foust              baikonur   127 1573821 8.069533e-05
## 3097    Jeff Foust             cryogenic   127 1573821 8.069533e-05
## 3098    Jeff Foust             deploying   127 1573821 8.069533e-05
## 3099    Jeff Foust              equipped   127 1573821 8.069533e-05
## 3100    Jeff Foust              fraction   127 1573821 8.069533e-05
## 3101    Jeff Foust               interim   127 1573821 8.069533e-05
## 3102    Jeff Foust               joining   127 1573821 8.069533e-05
## 3103    Jeff Foust                  kemp   127 1573821 8.069533e-05
## 3104    Jeff Foust                 nield   127 1573821 8.069533e-05
## 3105    Jeff Foust             objective   127 1573821 8.069533e-05
## 3106    Jeff Foust                  okla   127 1573821 8.069533e-05
## 3107    Jeff Foust                  paid   127 1573821 8.069533e-05
## 3108    Jeff Foust              prompted   127 1573821 8.069533e-05
## 3109    Jeff Foust              resolved   127 1573821 8.069533e-05
## 3110    Jeff Foust             separated   127 1573821 8.069533e-05
## 3111    Jeff Foust            subsequent   127 1573821 8.069533e-05
## 3112    Jeff Foust                unable   127 1573821 8.069533e-05
## 3113    Jeff Foust                 voice   127 1573821 8.069533e-05
## 3114  Sandra Erwin                army’s   127  716353 1.772869e-04
## 3115  Sandra Erwin               booster   127  716353 1.772869e-04
## 3116  Sandra Erwin                  burt   127  716353 1.772869e-04
## 3117  Sandra Erwin               electro   127  716353 1.772869e-04
## 3118  Sandra Erwin                 email   127  716353 1.772869e-04
## 3119  Sandra Erwin           exploration   127  716353 1.772869e-04
## 3120  Sandra Erwin                images   127  716353 1.772869e-04
## 3121  Sandra Erwin               trump’s   127  716353 1.772869e-04
## 3122    Jeff Foust               arrival   126 1573821 8.005993e-05
## 3123    Jeff Foust               average   126 1573821 8.005993e-05
## 3124    Jeff Foust                 aware   126 1573821 8.005993e-05
## 3125    Jeff Foust               balance   126 1573821 8.005993e-05
## 3126    Jeff Foust            evaluating   126 1573821 8.005993e-05
## 3127    Jeff Foust             frequency   126 1573821 8.005993e-05
## 3128    Jeff Foust               neutron   126 1573821 8.005993e-05
## 3129    Jeff Foust               praised   126 1573821 8.005993e-05
## 3130    Jeff Foust             spaceship   126 1573821 8.005993e-05
## 3131    Jeff Foust             sunshield   126 1573821 8.005993e-05
## 3132    Jeff Foust                  true   126 1573821 8.005993e-05
## 3133    Jeff Foust                  zone   126 1573821 8.005993e-05
## 3134  Sandra Erwin            commission   126  716353 1.758909e-04
## 3135  Sandra Erwin                 enemy   126  716353 1.758909e-04
## 3136  Sandra Erwin                  mesh   126  716353 1.758909e-04
## 3137  Sandra Erwin                regard   126  716353 1.758909e-04
## 3138  Sandra Erwin                  seek   126  716353 1.758909e-04
## 3139  Sandra Erwin                   ses   126  716353 1.758909e-04
## 3140  Sandra Erwin              spectrum   126  716353 1.758909e-04
## 3141    Jeff Foust            conclusion   125 1573821 7.942453e-05
## 3142    Jeff Foust         configuration   125 1573821 7.942453e-05
## 3143    Jeff Foust          connectivity   125 1573821 7.942453e-05
## 3144    Jeff Foust            delivering   125 1573821 7.942453e-05
## 3145    Jeff Foust              evaluate   125 1573821 7.942453e-05
## 3146    Jeff Foust               germany   125 1573821 7.942453e-05
## 3147    Jeff Foust             habitable   125 1573821 7.942453e-05
## 3148    Jeff Foust               hundred   125 1573821 7.942453e-05
## 3149    Jeff Foust                  laid   125 1573821 7.942453e-05
## 3150    Jeff Foust           maintaining   125 1573821 7.942453e-05
## 3151    Jeff Foust                 meant   125 1573821 7.942453e-05
## 3152    Jeff Foust            mitigation   125 1573821 7.942453e-05
## 3153    Jeff Foust                  note   125 1573821 7.942453e-05
## 3154    Jeff Foust             skeptical   125 1573821 7.942453e-05
## 3155    Jeff Foust              standing   125 1573821 7.942453e-05
## 3156    Jeff Foust               stopped   125 1573821 7.942453e-05
## 3157    Jeff Foust                 suits   125 1573821 7.942453e-05
## 3158    Jeff Foust                   tim   125 1573821 7.942453e-05
## 3159    Jeff Foust             triggered   125 1573821 7.942453e-05
## 3160    Jeff Foust        whiteknighttwo   125 1573821 7.942453e-05
## 3161  Sandra Erwin             estimates   125  716353 1.744950e-04
## 3162  Sandra Erwin             expertise   125  716353 1.744950e-04
## 3163  Sandra Erwin             functions   125  716353 1.744950e-04
## 3164  Sandra Erwin                 hours   125  716353 1.744950e-04
## 3165  Sandra Erwin         manufacturers   125  716353 1.744950e-04
## 3166  Sandra Erwin                  path   125  716353 1.744950e-04
## 3167  Sandra Erwin               putting   125  716353 1.744950e-04
## 3168  Sandra Erwin                region   125  716353 1.744950e-04
## 3169    Jeff Foust             addressed   124 1573821 7.878914e-05
## 3170    Jeff Foust            discussing   124 1573821 7.878914e-05
## 3171    Jeff Foust             finalized   124 1573821 7.878914e-05
## 3172    Jeff Foust               habitat   124 1573821 7.878914e-05
## 3173    Jeff Foust             hurricane   124 1573821 7.878914e-05
## 3174    Jeff Foust            industrial   124 1573821 7.878914e-05
## 3175    Jeff Foust                israel   124 1573821 7.878914e-05
## 3176    Jeff Foust               minimum   124 1573821 7.878914e-05
## 3177    Jeff Foust                  race   124 1573821 7.878914e-05
## 3178    Jeff Foust                repair   124 1573821 7.878914e-05
## 3179    Jeff Foust          shareholders   124 1573821 7.878914e-05
## 3180    Jeff Foust                 voted   124 1573821 7.878914e-05
## 3181  Sandra Erwin          experimental   124  716353 1.730990e-04
## 3182  Sandra Erwin                 fleet   124  716353 1.730990e-04
## 3183  Sandra Erwin               located   124  716353 1.730990e-04
## 3184  Sandra Erwin              offering   124  716353 1.730990e-04
## 3185    Jeff Foust             cautioned   123 1573821 7.815374e-05
## 3186    Jeff Foust             explained   123 1573821 7.815374e-05
## 3187    Jeff Foust          implementing   123 1573821 7.815374e-05
## 3188    Jeff Foust          inspiration4   123 1573821 7.815374e-05
## 3189    Jeff Foust                 kelly   123 1573821 7.815374e-05
## 3190    Jeff Foust                   neo   123 1573821 7.815374e-05
## 3191    Jeff Foust                permit   123 1573821 7.815374e-05
## 3192    Jeff Foust               repairs   123 1573821 7.815374e-05
## 3193    Jeff Foust            separately   123 1573821 7.815374e-05
## 3194    Jeff Foust              suggests   123 1573821 7.815374e-05
## 3195    Jeff Foust               unnamed   123 1573821 7.815374e-05
## 3196    Jeff Foust               warning   123 1573821 7.815374e-05
## 3197  Sandra Erwin                allied   123  716353 1.717031e-04
## 3198  Sandra Erwin                career   123  716353 1.717031e-04
## 3199  Sandra Erwin                decide   123  716353 1.717031e-04
## 3200  Sandra Erwin              european   123  716353 1.717031e-04
## 3201  Sandra Erwin                  form   123  716353 1.717031e-04
## 3202  Sandra Erwin                  half   123  716353 1.717031e-04
## 3203  Sandra Erwin                models   123  716353 1.717031e-04
## 3204  Sandra Erwin          partnerships   123  716353 1.717031e-04
## 3205  Sandra Erwin                 spent   123  716353 1.717031e-04
## 3206  Sandra Erwin            tactically   123  716353 1.717031e-04
## 3207    Jeff Foust               amazing   122 1573821 7.751835e-05
## 3208    Jeff Foust               approve   122 1573821 7.751835e-05
## 3209    Jeff Foust                blamed   122 1573821 7.751835e-05
## 3210    Jeff Foust                bodies   122 1573821 7.751835e-05
## 3211    Jeff Foust                career   122 1573821 7.751835e-05
## 3212    Jeff Foust               carries   122 1573821 7.751835e-05
## 3213    Jeff Foust             consensus   122 1573821 7.751835e-05
## 3214    Jeff Foust                  kick   122 1573821 7.751835e-05
## 3215    Jeff Foust                   los   122 1573821 7.751835e-05
## 3216    Jeff Foust               rapidly   122 1573821 7.751835e-05
## 3217  Sandra Erwin        accountability   122  716353 1.703071e-04
## 3218  Sandra Erwin            algorithms   122  716353 1.703071e-04
## 3219  Sandra Erwin         certification   122  716353 1.703071e-04
## 3220  Sandra Erwin               designs   122  716353 1.703071e-04
## 3221  Sandra Erwin               directs   122  716353 1.703071e-04
## 3222  Sandra Erwin            importance   122  716353 1.703071e-04
## 3223    Jeff Foust                amazon   121 1573821 7.688295e-05
## 3224    Jeff Foust             attracted   121 1573821 7.688295e-05
## 3225    Jeff Foust                  cnes   121 1573821 7.688295e-05
## 3226    Jeff Foust                 daily   121 1573821 7.688295e-05
## 3227    Jeff Foust                detail   121 1573821 7.688295e-05
## 3228    Jeff Foust                  fell   121 1573821 7.688295e-05
## 3229    Jeff Foust           interagency   121 1573821 7.688295e-05
## 3230    Jeff Foust              invasion   121 1573821 7.688295e-05
## 3231    Jeff Foust               journey   121 1573821 7.688295e-05
## 3232    Jeff Foust                   las   121 1573821 7.688295e-05
## 3233    Jeff Foust             nominated   121 1573821 7.688295e-05
## 3234    Jeff Foust           occultation   121 1573821 7.688295e-05
## 3235    Jeff Foust                sensor   121 1573821 7.688295e-05
## 3236    Jeff Foust                serves   121 1573821 7.688295e-05
## 3237    Jeff Foust                 signs   121 1573821 7.688295e-05
## 3238    Jeff Foust                  trip   121 1573821 7.688295e-05
## 3239  Sandra Erwin         architectures   121  716353 1.689111e-04
## 3240  Sandra Erwin             determine   121  716353 1.689111e-04
## 3241  Sandra Erwin            industries   121  716353 1.689111e-04
## 3242  Sandra Erwin              involved   121  716353 1.689111e-04
## 3243  Sandra Erwin                mobile   121  716353 1.689111e-04
## 3244  Sandra Erwin           terrestrial   121  716353 1.689111e-04
## 3245  Sandra Erwin              upcoming   121  716353 1.689111e-04
## 3246    Jeff Foust                 2030s   120 1573821 7.624755e-05
## 3247    Jeff Foust              antennas   120 1573821 7.624755e-05
## 3248    Jeff Foust              aperture   120 1573821 7.624755e-05
## 3249    Jeff Foust                assess   120 1573821 7.624755e-05
## 3250    Jeff Foust                forces   120 1573821 7.624755e-05
## 3251    Jeff Foust                hybrid   120 1573821 7.624755e-05
## 3252    Jeff Foust              interior   120 1573821 7.624755e-05
## 3253    Jeff Foust             platforms   120 1573821 7.624755e-05
## 3254    Jeff Foust          professional   120 1573821 7.624755e-05
## 3255    Jeff Foust              regional   120 1573821 7.624755e-05
## 3256    Jeff Foust               resolve   120 1573821 7.624755e-05
## 3257    Jeff Foust                    rs   120 1573821 7.624755e-05
## 3258    Jeff Foust                saturn   120 1573821 7.624755e-05
## 3259    Jeff Foust                submit   120 1573821 7.624755e-05
## 3260    Jeff Foust              targeted   120 1573821 7.624755e-05
## 3261  Sandra Erwin         appropriators   120  716353 1.675152e-04
## 3262  Sandra Erwin                   bit   120  716353 1.675152e-04
## 3263  Sandra Erwin               connect   120  716353 1.675152e-04
## 3264  Sandra Erwin               demands   120  716353 1.675152e-04
## 3265  Sandra Erwin               excited   120  716353 1.675152e-04
## 3266  Sandra Erwin             extremely   120  716353 1.675152e-04
## 3267  Sandra Erwin            increasing   120  716353 1.675152e-04
## 3268  Sandra Erwin          interference   120  716353 1.675152e-04
## 3269  Sandra Erwin              orbiting   120  716353 1.675152e-04
## 3270  Sandra Erwin                pieces   120  716353 1.675152e-04
## 3271  Sandra Erwin                 spoke   120  716353 1.675152e-04
## 3272    Jeff Foust             advocates   119 1573821 7.561216e-05
## 3273    Jeff Foust              baseline   119 1573821 7.561216e-05
## 3274    Jeff Foust                  debt   119 1573821 7.561216e-05
## 3275    Jeff Foust            discovered   119 1573821 7.561216e-05
## 3276    Jeff Foust               explain   119 1573821 7.561216e-05
## 3277    Jeff Foust              external   119 1573821 7.561216e-05
## 3278    Jeff Foust          modification   119 1573821 7.561216e-05
## 3279    Jeff Foust              overruns   119 1573821 7.561216e-05
## 3280    Jeff Foust                parker   119 1573821 7.561216e-05
## 3281    Jeff Foust                rolled   119 1573821 7.561216e-05
## 3282    Jeff Foust               roughly   119 1573821 7.561216e-05
## 3283    Jeff Foust               tickets   119 1573821 7.561216e-05
## 3284    Jeff Foust                 trade   119 1573821 7.561216e-05
## 3285    Jeff Foust                   uae   119 1573821 7.561216e-05
## 3286  Sandra Erwin                aboard   119  716353 1.661192e-04
## 3287  Sandra Erwin                austin   119  716353 1.661192e-04
## 3288  Sandra Erwin                 coast   119  716353 1.661192e-04
## 3289  Sandra Erwin                  host   119  716353 1.661192e-04
## 3290  Sandra Erwin            innovative   119  716353 1.661192e-04
## 3291  Sandra Erwin                   jay   119  716353 1.661192e-04
## 3292  Sandra Erwin               limited   119  716353 1.661192e-04
## 3293  Sandra Erwin                  lord   119  716353 1.661192e-04
## 3294  Sandra Erwin         modernization   119  716353 1.661192e-04
## 3295  Sandra Erwin               sectors   119  716353 1.661192e-04
## 3296  Sandra Erwin                 stood   119  716353 1.661192e-04
## 3297  Sandra Erwin         technological   119  716353 1.661192e-04
## 3298  Sandra Erwin              timeline   119  716353 1.661192e-04
## 3299  Sandra Erwin          unclassified   119  716353 1.661192e-04
## 3300    Jeff Foust              achieved   118 1573821 7.497676e-05
## 3301    Jeff Foust            adventures   118 1573821 7.497676e-05
## 3302    Jeff Foust                 corps   118 1573821 7.497676e-05
## 3303    Jeff Foust          destinations   118 1573821 7.497676e-05
## 3304    Jeff Foust                escape   118 1573821 7.497676e-05
## 3305    Jeff Foust                 heard   118 1573821 7.497676e-05
## 3306    Jeff Foust                hurley   118 1573821 7.497676e-05
## 3307    Jeff Foust                manage   118 1573821 7.497676e-05
## 3308    Jeff Foust              managers   118 1573821 7.497676e-05
## 3309    Jeff Foust          measurements   118 1573821 7.497676e-05
## 3310    Jeff Foust               methane   118 1573821 7.497676e-05
## 3311    Jeff Foust         participating   118 1573821 7.497676e-05
## 3312    Jeff Foust                  ross   118 1573821 7.497676e-05
## 3313  Sandra Erwin               attempt   118  716353 1.647233e-04
## 3314  Sandra Erwin              bongiovi   118  716353 1.647233e-04
## 3315  Sandra Erwin          connectivity   118  716353 1.647233e-04
## 3316  Sandra Erwin            identified   118  716353 1.647233e-04
## 3317  Sandra Erwin               markets   118  716353 1.647233e-04
## 3318  Sandra Erwin                 sixth   118  716353 1.647233e-04
## 3319  Sandra Erwin               success   118  716353 1.647233e-04
## 3320    Jeff Foust            aggressive   117 1573821 7.434136e-05
## 3321    Jeff Foust                 hired   117 1573821 7.434136e-05
## 3322    Jeff Foust        implementation   117 1573821 7.434136e-05
## 3323    Jeff Foust          presidential   117 1573821 7.434136e-05
## 3324    Jeff Foust             recovered   117 1573821 7.434136e-05
## 3325    Jeff Foust                  reed   117 1573821 7.434136e-05
## 3326    Jeff Foust                reused   117 1573821 7.434136e-05
## 3327    Jeff Foust               senator   117 1573821 7.434136e-05
## 3328    Jeff Foust                 views   117 1573821 7.434136e-05
## 3329    Jeff Foust               weekend   117 1573821 7.434136e-05
## 3330  Sandra Erwin            autonomous   117  716353 1.633273e-04
## 3331  Sandra Erwin          conversation   117  716353 1.633273e-04
## 3332  Sandra Erwin                  send   117  716353 1.633273e-04
## 3333  Sandra Erwin          subscription   117  716353 1.633273e-04
## 3334    Jeff Foust           billionaire   116 1573821 7.370597e-05
## 3335    Jeff Foust           centimeters   116 1573821 7.370597e-05
## 3336    Jeff Foust               defined   116 1573821 7.370597e-05
## 3337    Jeff Foust                degree   116 1573821 7.370597e-05
## 3338    Jeff Foust                detect   116 1573821 7.370597e-05
## 3339    Jeff Foust               elected   116 1573821 7.370597e-05
## 3340    Jeff Foust                 folks   116 1573821 7.370597e-05
## 3341    Jeff Foust               founded   116 1573821 7.370597e-05
## 3342    Jeff Foust          incorporated   116 1573821 7.370597e-05
## 3343    Jeff Foust                melroy   116 1573821 7.370597e-05
## 3344    Jeff Foust               notably   116 1573821 7.370597e-05
## 3345    Jeff Foust               offices   116 1573821 7.370597e-05
## 3346    Jeff Foust              protests   116 1573821 7.370597e-05
## 3347    Jeff Foust               reality   116 1573821 7.370597e-05
## 3348    Jeff Foust                   sar   116 1573821 7.370597e-05
## 3349    Jeff Foust                 sized   116 1573821 7.370597e-05
## 3350    Jeff Foust             space.com   116 1573821 7.370597e-05
## 3351    Jeff Foust               succeed   116 1573821 7.370597e-05
## 3352    Jeff Foust                   ten   116 1573821 7.370597e-05
## 3353    Jeff Foust          universities   116 1573821 7.370597e-05
## 3354    Jeff Foust               woerner   116 1573821 7.370597e-05
## 3355  Sandra Erwin             cautioned   116  716353 1.619313e-04
## 3356  Sandra Erwin           communicate   116  716353 1.619313e-04
## 3357  Sandra Erwin            deterrence   116  716353 1.619313e-04
## 3358  Sandra Erwin                modern   116  716353 1.619313e-04
## 3359  Sandra Erwin             organized   116  716353 1.619313e-04
## 3360  Sandra Erwin                speech   116  716353 1.619313e-04
## 3361  Sandra Erwin            university   116  716353 1.619313e-04
## 3362    Jeff Foust                brings   115 1573821 7.307057e-05
## 3363    Jeff Foust              feedback   115 1573821 7.307057e-05
## 3364    Jeff Foust                   fix   115 1573821 7.307057e-05
## 3365    Jeff Foust              inmarsat   115 1573821 7.307057e-05
## 3366    Jeff Foust               maximum   115 1573821 7.307057e-05
## 3367    Jeff Foust              modified   115 1573821 7.307057e-05
## 3368    Jeff Foust                  rely   115 1573821 7.307057e-05
## 3369    Jeff Foust            retirement   115 1573821 7.307057e-05
## 3370    Jeff Foust               savings   115 1573821 7.307057e-05
## 3371    Jeff Foust                 shown   115 1573821 7.307057e-05
## 3372    Jeff Foust                  sort   115 1573821 7.307057e-05
## 3373    Jeff Foust               survive   115 1573821 7.307057e-05
## 3374  Sandra Erwin              boosters   115  716353 1.605354e-04
## 3375  Sandra Erwin                   cut   115  716353 1.605354e-04
## 3376  Sandra Erwin               disrupt   115  716353 1.605354e-04
## 3377  Sandra Erwin             locations   115  716353 1.605354e-04
## 3378  Sandra Erwin                   met   115  716353 1.605354e-04
## 3379    Jeff Foust              actively   114 1573821 7.243518e-05
## 3380    Jeff Foust             curiosity   114 1573821 7.243518e-05
## 3381    Jeff Foust             exoplanet   114 1573821 7.243518e-05
## 3382    Jeff Foust              ignition   114 1573821 7.243518e-05
## 3383    Jeff Foust              informed   114 1573821 7.243518e-05
## 3384    Jeff Foust                  juno   114 1573821 7.243518e-05
## 3385    Jeff Foust                  mole   114 1573821 7.243518e-05
## 3386    Jeff Foust               mounted   114 1573821 7.243518e-05
## 3387    Jeff Foust               outpost   114 1573821 7.243518e-05
## 3388    Jeff Foust               perfect   114 1573821 7.243518e-05
## 3389    Jeff Foust             sanctions   114 1573821 7.243518e-05
## 3390    Jeff Foust                 spoke   114 1573821 7.243518e-05
## 3391    Jeff Foust           temperature   114 1573821 7.243518e-05
## 3392    Jeff Foust               visible   114 1573821 7.243518e-05
## 3393  Sandra Erwin              benefits   114  716353 1.591394e-04
## 3394  Sandra Erwin             collected   114  716353 1.591394e-04
## 3395  Sandra Erwin           committee’s   114  716353 1.591394e-04
## 3396  Sandra Erwin             deploying   114  716353 1.591394e-04
## 3397  Sandra Erwin            experience   114  716353 1.591394e-04
## 3398  Sandra Erwin              martin’s   114  716353 1.591394e-04
## 3399  Sandra Erwin                mexico   114  716353 1.591394e-04
## 3400  Sandra Erwin            millennium   114  716353 1.591394e-04
## 3401  Sandra Erwin                   rco   114  716353 1.591394e-04
## 3402  Sandra Erwin          successfully   114  716353 1.591394e-04
## 3403    Jeff Foust                actual   113 1573821 7.179978e-05
## 3404    Jeff Foust               angeles   113 1573821 7.179978e-05
## 3405    Jeff Foust              assuming   113 1573821 7.179978e-05
## 3406    Jeff Foust                 check   113 1573821 7.179978e-05
## 3407    Jeff Foust            collisions   113 1573821 7.179978e-05
## 3408    Jeff Foust            complexity   113 1573821 7.179978e-05
## 3409    Jeff Foust           contractors   113 1573821 7.179978e-05
## 3410    Jeff Foust               correct   113 1573821 7.179978e-05
## 3411    Jeff Foust                 extra   113 1573821 7.179978e-05
## 3412    Jeff Foust                hawaii   113 1573821 7.179978e-05
## 3413    Jeff Foust                helium   113 1573821 7.179978e-05
## 3414    Jeff Foust                mature   113 1573821 7.179978e-05
## 3415    Jeff Foust             mechanism   113 1573821 7.179978e-05
## 3416    Jeff Foust                 orbex   113 1573821 7.179978e-05
## 3417    Jeff Foust              scenario   113 1573821 7.179978e-05
## 3418    Jeff Foust                 spacs   113 1573821 7.179978e-05
## 3419    Jeff Foust               threats   113 1573821 7.179978e-05
## 3420    Jeff Foust                 types   113 1573821 7.179978e-05
## 3421    Jeff Foust                viable   113 1573821 7.179978e-05
## 3422  Sandra Erwin                adding   113  716353 1.577435e-04
## 3423  Sandra Erwin          announcement   113  716353 1.577435e-04
## 3424  Sandra Erwin             documents   113  716353 1.577435e-04
## 3425  Sandra Erwin                 drive   113  716353 1.577435e-04
## 3426  Sandra Erwin             employees   113  716353 1.577435e-04
## 3427  Sandra Erwin             practices   113  716353 1.577435e-04
## 3428  Sandra Erwin           prototyping   113  716353 1.577435e-04
## 3429  Sandra Erwin            provisions   113  716353 1.577435e-04
## 3430  Sandra Erwin            resiliency   113  716353 1.577435e-04
## 3431  Sandra Erwin               robotic   113  716353 1.577435e-04
## 3432  Sandra Erwin                  true   113  716353 1.577435e-04
## 3433    Jeff Foust                 allen   112 1573821 7.116438e-05
## 3434    Jeff Foust             altitudes   112 1573821 7.116438e-05
## 3435    Jeff Foust               briefly   112 1573821 7.116438e-05
## 3436    Jeff Foust           competitors   112 1573821 7.116438e-05
## 3437    Jeff Foust           constraints   112 1573821 7.116438e-05
## 3438    Jeff Foust             cooperate   112 1573821 7.116438e-05
## 3439    Jeff Foust              ensuring   112 1573821 7.116438e-05
## 3440    Jeff Foust              eutelsat   112 1573821 7.116438e-05
## 3441    Jeff Foust                 favor   112 1573821 7.116438e-05
## 3442    Jeff Foust           feasibility   112 1573821 7.116438e-05
## 3443    Jeff Foust                 kinds   112 1573821 7.116438e-05
## 3444    Jeff Foust           koenigsmann   112 1573821 7.116438e-05
## 3445    Jeff Foust                 lease   112 1573821 7.116438e-05
## 3446    Jeff Foust              minimize   112 1573821 7.116438e-05
## 3447    Jeff Foust                  miss   112 1573821 7.116438e-05
## 3448    Jeff Foust              nitrogen   112 1573821 7.116438e-05
## 3449    Jeff Foust               parties   112 1573821 7.116438e-05
## 3450    Jeff Foust               passing   112 1573821 7.116438e-05
## 3451    Jeff Foust                pounds   112 1573821 7.116438e-05
## 3452    Jeff Foust              resulted   112 1573821 7.116438e-05
## 3453    Jeff Foust                   spd   112 1573821 7.116438e-05
## 3454    Jeff Foust                    uk   112 1573821 7.116438e-05
## 3455  Sandra Erwin                actual   112  716353 1.563475e-04
## 3456  Sandra Erwin               assured   112  716353 1.563475e-04
## 3457  Sandra Erwin              comments   112  716353 1.563475e-04
## 3458  Sandra Erwin             dependent   112  716353 1.563475e-04
## 3459  Sandra Erwin                  mass   112  716353 1.563475e-04
## 3460  Sandra Erwin              progress   112  716353 1.563475e-04
## 3461  Sandra Erwin                    rf   112  716353 1.563475e-04
## 3462  Sandra Erwin                served   112  716353 1.563475e-04
## 3463  Sandra Erwin                 video   112  716353 1.563475e-04
## 3464    Jeff Foust               adviser   111 1573821 7.052899e-05
## 3465    Jeff Foust            brightness   111 1573821 7.052899e-05
## 3466    Jeff Foust             formation   111 1573821 7.052899e-05
## 3467    Jeff Foust               nominal   111 1573821 7.052899e-05
## 3468    Jeff Foust                  page   111 1573821 7.052899e-05
## 3469    Jeff Foust               reflect   111 1573821 7.052899e-05
## 3470    Jeff Foust                rovers   111 1573821 7.052899e-05
## 3471    Jeff Foust             stability   111 1573821 7.052899e-05
## 3472    Jeff Foust               studied   111 1573821 7.052899e-05
## 3473  Sandra Erwin             bandwidth   111  716353 1.549515e-04
## 3474  Sandra Erwin                 covid   111  716353 1.549515e-04
## 3475  Sandra Erwin              detailed   111  716353 1.549515e-04
## 3476  Sandra Erwin                   nts   111  716353 1.549515e-04
## 3477  Sandra Erwin               procure   111  716353 1.549515e-04
## 3478  Sandra Erwin             provision   111  716353 1.549515e-04
## 3479  Sandra Erwin              publicly   111  716353 1.549515e-04
## 3480  Sandra Erwin                   ran   111  716353 1.549515e-04
## 3481    Jeff Foust                 cabin   110 1573821 6.989359e-05
## 3482    Jeff Foust              diameter   110 1573821 6.989359e-05
## 3483    Jeff Foust                  door   110 1573821 6.989359e-05
## 3484    Jeff Foust          heliophysics   110 1573821 6.989359e-05
## 3485    Jeff Foust                mirror   110 1573821 6.989359e-05
## 3486    Jeff Foust               storage   110 1573821 6.989359e-05
## 3487  Sandra Erwin            absolutely   110  716353 1.535556e-04
## 3488  Sandra Erwin             adversary   110  716353 1.535556e-04
## 3489  Sandra Erwin               devices   110  716353 1.535556e-04
## 3490  Sandra Erwin            huntsville   110  716353 1.535556e-04
## 3491  Sandra Erwin                 media   110  716353 1.535556e-04
## 3492  Sandra Erwin               protest   110  716353 1.535556e-04
## 3493  Sandra Erwin                 won’t   110  716353 1.535556e-04
## 3494    Jeff Foust           anniversary   109 1573821 6.925819e-05
## 3495    Jeff Foust               collins   109 1573821 6.925819e-05
## 3496    Jeff Foust            conducting   109 1573821 6.925819e-05
## 3497    Jeff Foust             encourage   109 1573821 6.925819e-05
## 3498    Jeff Foust             expansion   109 1573821 6.925819e-05
## 3499    Jeff Foust              frontier   109 1573821 6.925819e-05
## 3500    Jeff Foust                gwynne   109 1573821 6.925819e-05
## 3501    Jeff Foust            incredibly   109 1573821 6.925819e-05
## 3502    Jeff Foust           individuals   109 1573821 6.925819e-05
## 3503    Jeff Foust                 jason   109 1573821 6.925819e-05
## 3504    Jeff Foust                  load   109 1573821 6.925819e-05
## 3505    Jeff Foust              redirect   109 1573821 6.925819e-05
## 3506    Jeff Foust        reorganization   109 1573821 6.925819e-05
## 3507    Jeff Foust             selecting   109 1573821 6.925819e-05
## 3508    Jeff Foust            structures   109 1573821 6.925819e-05
## 3509    Jeff Foust        teleconference   109 1573821 6.925819e-05
## 3510    Jeff Foust                worlds   109 1573821 6.925819e-05
## 3511    Jeff Foust              wouldn’t   109 1573821 6.925819e-05
## 3512  Sandra Erwin                assess   109  716353 1.521596e-04
## 3513  Sandra Erwin                 avoid   109  716353 1.521596e-04
## 3514  Sandra Erwin             confident   109  716353 1.521596e-04
## 3515  Sandra Erwin                 glenn   109  716353 1.521596e-04
## 3516  Sandra Erwin              guidance   109  716353 1.521596e-04
## 3517  Sandra Erwin                  hold   109  716353 1.521596e-04
## 3518  Sandra Erwin                marine   109  716353 1.521596e-04
## 3519  Sandra Erwin               massive   109  716353 1.521596e-04
## 3520  Sandra Erwin            newsletter   109  716353 1.521596e-04
## 3521  Sandra Erwin                  pass   109  716353 1.521596e-04
## 3522  Sandra Erwin              reusable   109  716353 1.521596e-04
## 3523  Sandra Erwin             rideshare   109  716353 1.521596e-04
## 3524  Sandra Erwin                tested   109  716353 1.521596e-04
## 3525  Sandra Erwin                year’s   109  716353 1.521596e-04
## 3526    Jeff Foust                 basic   108 1573821 6.862280e-05
## 3527    Jeff Foust               chaired   108 1573821 6.862280e-05
## 3528    Jeff Foust            colglazier   108 1573821 6.862280e-05
## 3529    Jeff Foust               fueling   108 1573821 6.862280e-05
## 3530    Jeff Foust                  hire   108 1573821 6.862280e-05
## 3531    Jeff Foust                losing   108 1573821 6.862280e-05
## 3532    Jeff Foust               opposed   108 1573821 6.862280e-05
## 3533    Jeff Foust                proven   108 1573821 6.862280e-05
## 3534    Jeff Foust              reserves   108 1573821 6.862280e-05
## 3535    Jeff Foust            settlement   108 1573821 6.862280e-05
## 3536  Sandra Erwin              operated   108  716353 1.507637e-04
## 3537  Sandra Erwin           potentially   108  716353 1.507637e-04
## 3538  Sandra Erwin              prepared   108  716353 1.507637e-04
## 3539  Sandra Erwin                 purdy   108  716353 1.507637e-04
## 3540  Sandra Erwin              reported   108  716353 1.507637e-04
## 3541  Sandra Erwin                 solar   108  716353 1.507637e-04
## 3542  Sandra Erwin                  tech   108  716353 1.507637e-04
## 3543  Sandra Erwin            thornberry   108  716353 1.507637e-04
## 3544    Jeff Foust             candidate   107 1573821 6.798740e-05
## 3545    Jeff Foust                crater   107 1573821 6.798740e-05
## 3546    Jeff Foust                dollar   107 1573821 6.798740e-05
## 3547    Jeff Foust             expanding   107 1573821 6.798740e-05
## 3548    Jeff Foust                mining   107 1573821 6.798740e-05
## 3549    Jeff Foust                  poor   107 1573821 6.798740e-05
## 3550    Jeff Foust            subsidiary   107 1573821 6.798740e-05
## 3551    Jeff Foust               tropics   107 1573821 6.798740e-05
## 3552  Sandra Erwin               changed   107  716353 1.493677e-04
## 3553  Sandra Erwin         collaboration   107  716353 1.493677e-04
## 3554  Sandra Erwin               collect   107  716353 1.493677e-04
## 3555  Sandra Erwin             conducted   107  716353 1.493677e-04
## 3556  Sandra Erwin            continuing   107  716353 1.493677e-04
## 3557  Sandra Erwin             extension   107  716353 1.493677e-04
## 3558  Sandra Erwin                 flown   107  716353 1.493677e-04
## 3559  Sandra Erwin              goldfein   107  716353 1.493677e-04
## 3560  Sandra Erwin                intent   107  716353 1.493677e-04
## 3561  Sandra Erwin               leading   107  716353 1.493677e-04
## 3562  Sandra Erwin                 paper   107  716353 1.493677e-04
## 3563  Sandra Erwin               predict   107  716353 1.493677e-04
## 3564  Sandra Erwin                ranges   107  716353 1.493677e-04
## 3565  Sandra Erwin               segment   107  716353 1.493677e-04
## 3566  Sandra Erwin                shared   107  716353 1.493677e-04
## 3567    Jeff Foust               distant   106 1573821 6.735201e-05
## 3568    Jeff Foust              prepares   106 1573821 6.735201e-05
## 3569    Jeff Foust              recalled   106 1573821 6.735201e-05
## 3570    Jeff Foust             specifics   106 1573821 6.735201e-05
## 3571    Jeff Foust               telesat   106 1573821 6.735201e-05
## 3572  Sandra Erwin                    3d   106  716353 1.479717e-04
## 3573  Sandra Erwin                 aimed   106  716353 1.479717e-04
## 3574  Sandra Erwin               antenna   106  716353 1.479717e-04
## 3575  Sandra Erwin                arctic   106  716353 1.479717e-04
## 3576  Sandra Erwin                  arms   106  716353 1.479717e-04
## 3577  Sandra Erwin          establishing   106  716353 1.479717e-04
## 3578  Sandra Erwin               minutes   106  716353 1.479717e-04
## 3579  Sandra Erwin             modernize   106  716353 1.479717e-04
## 3580  Sandra Erwin                 norms   106  716353 1.479717e-04
## 3581  Sandra Erwin                  safe   106  716353 1.479717e-04
## 3582  Sandra Erwin                    sn   106  716353 1.479717e-04
## 3583  Sandra Erwin                 train   106  716353 1.479717e-04
## 3584    Jeff Foust                alenia   105 1573821 6.671661e-05
## 3585    Jeff Foust                  amos   105 1573821 6.671661e-05
## 3586    Jeff Foust                 apply   105 1573821 6.671661e-05
## 3587    Jeff Foust                  beam   105 1573821 6.671661e-05
## 3588    Jeff Foust                 broke   105 1573821 6.671661e-05
## 3589    Jeff Foust               defence   105 1573821 6.671661e-05
## 3590    Jeff Foust               directs   105 1573821 6.671661e-05
## 3591    Jeff Foust               feature   105 1573821 6.671661e-05
## 3592    Jeff Foust                   hot   105 1573821 6.671661e-05
## 3593    Jeff Foust               lasting   105 1573821 6.671661e-05
## 3594    Jeff Foust              luncheon   105 1573821 6.671661e-05
## 3595    Jeff Foust                    ng   105 1573821 6.671661e-05
## 3596    Jeff Foust               orbit’s   105 1573821 6.671661e-05
## 3597    Jeff Foust             prevented   105 1573821 6.671661e-05
## 3598    Jeff Foust                  save   105 1573821 6.671661e-05
## 3599    Jeff Foust               workers   105 1573821 6.671661e-05
## 3600    Jeff Foust                    xl   105 1573821 6.671661e-05
## 3601  Sandra Erwin               attract   105  716353 1.465758e-04
## 3602  Sandra Erwin                battle   105  716353 1.465758e-04
## 3603  Sandra Erwin              billions   105  716353 1.465758e-04
## 3604  Sandra Erwin                 esper   105  716353 1.465758e-04
## 3605  Sandra Erwin                  game   105  716353 1.465758e-04
## 3606  Sandra Erwin          government’s   105  716353 1.465758e-04
## 3607  Sandra Erwin            initiative   105  716353 1.465758e-04
## 3608  Sandra Erwin               pacific   105  716353 1.465758e-04
## 3609  Sandra Erwin              produced   105  716353 1.465758e-04
## 3610    Jeff Foust              audience   104 1573821 6.608121e-05
## 3611    Jeff Foust                  bush   104 1573821 6.608121e-05
## 3612    Jeff Foust             democrats   104 1573821 6.608121e-05
## 3613    Jeff Foust            exoplanets   104 1573821 6.608121e-05
## 3614    Jeff Foust               filings   104 1573821 6.608121e-05
## 3615    Jeff Foust                 grant   104 1573821 6.608121e-05
## 3616    Jeff Foust             hydrazine   104 1573821 6.608121e-05
## 3617    Jeff Foust           identifying   104 1573821 6.608121e-05
## 3618    Jeff Foust              markusic   104 1573821 6.608121e-05
## 3619    Jeff Foust               michoud   104 1573821 6.608121e-05
## 3620    Jeff Foust             proposing   104 1573821 6.608121e-05
## 3621    Jeff Foust                   rex   104 1573821 6.608121e-05
## 3622    Jeff Foust            securities   104 1573821 6.608121e-05
## 3623    Jeff Foust                starts   104 1573821 6.608121e-05
## 3624    Jeff Foust                 stern   104 1573821 6.608121e-05
## 3625    Jeff Foust              surprise   104 1573821 6.608121e-05
## 3626    Jeff Foust                walker   104 1573821 6.608121e-05
## 3627  Sandra Erwin                  core   104  716353 1.451798e-04
## 3628  Sandra Erwin                couple   104  716353 1.451798e-04
## 3629  Sandra Erwin                 forum   104  716353 1.451798e-04
## 3630  Sandra Erwin                harris   104  716353 1.451798e-04
## 3631  Sandra Erwin                matter   104  716353 1.451798e-04
## 3632  Sandra Erwin               maxar’s   104  716353 1.451798e-04
## 3633  Sandra Erwin              mitchell   104  716353 1.451798e-04
## 3634  Sandra Erwin                online   104  716353 1.451798e-04
## 3635  Sandra Erwin               ranking   104  716353 1.451798e-04
## 3636  Sandra Erwin               reasons   104  716353 1.451798e-04
## 3637  Sandra Erwin                  stop   104  716353 1.451798e-04
## 3638  Sandra Erwin                terran   104  716353 1.451798e-04
## 3639    Jeff Foust            collecting   103 1573821 6.544582e-05
## 3640    Jeff Foust             droneship   103 1573821 6.544582e-05
## 3641    Jeff Foust                dubbed   103 1573821 6.544582e-05
## 3642    Jeff Foust               energia   103 1573821 6.544582e-05
## 3643    Jeff Foust              enhanced   103 1573821 6.544582e-05
## 3644    Jeff Foust              freilich   103 1573821 6.544582e-05
## 3645    Jeff Foust                  gaps   103 1573821 6.544582e-05
## 3646    Jeff Foust                  hear   103 1573821 6.544582e-05
## 3647    Jeff Foust               promote   103 1573821 6.544582e-05
## 3648    Jeff Foust             prospects   103 1573821 6.544582e-05
## 3649    Jeff Foust             purchased   103 1573821 6.544582e-05
## 3650    Jeff Foust               reserve   103 1573821 6.544582e-05
## 3651    Jeff Foust                 split   103 1573821 6.544582e-05
## 3652    Jeff Foust                  tass   103 1573821 6.544582e-05
## 3653    Jeff Foust          temperatures   103 1573821 6.544582e-05
## 3654    Jeff Foust                tweets   103 1573821 6.544582e-05
## 3655    Jeff Foust             typically   103 1573821 6.544582e-05
## 3656  Sandra Erwin               evolved   103  716353 1.437839e-04
## 3657  Sandra Erwin        military.space   103  716353 1.437839e-04
## 3658  Sandra Erwin                 moves   103  716353 1.437839e-04
## 3659  Sandra Erwin               pushing   103  716353 1.437839e-04
## 3660  Sandra Erwin               quarter   103  716353 1.437839e-04
## 3661  Sandra Erwin             typically   103  716353 1.437839e-04
## 3662  Sandra Erwin            vulnerable   103  716353 1.437839e-04
## 3663    Jeff Foust                accept   102 1573821 6.481042e-05
## 3664    Jeff Foust             achieving   102 1573821 6.481042e-05
## 3665    Jeff Foust               airlock   102 1573821 6.481042e-05
## 3666    Jeff Foust             approvals   102 1573821 6.481042e-05
## 3667    Jeff Foust               closing   102 1573821 6.481042e-05
## 3668    Jeff Foust                donald   102 1573821 6.481042e-05
## 3669    Jeff Foust                   icy   102 1573821 6.481042e-05
## 3670    Jeff Foust            incredible   102 1573821 6.481042e-05
## 3671    Jeff Foust                 josef   102 1573821 6.481042e-05
## 3672    Jeff Foust               landsat   102 1573821 6.481042e-05
## 3673    Jeff Foust                osiris   102 1573821 6.481042e-05
## 3674    Jeff Foust               returns   102 1573821 6.481042e-05
## 3675    Jeff Foust                 ruled   102 1573821 6.481042e-05
## 3676    Jeff Foust                 scope   102 1573821 6.481042e-05
## 3677    Jeff Foust                shelby   102 1573821 6.481042e-05
## 3678    Jeff Foust                 ula’s   102 1573821 6.481042e-05
## 3679    Jeff Foust                  vast   102 1573821 6.481042e-05
## 3680  Sandra Erwin            challenged   102  716353 1.423879e-04
## 3681  Sandra Erwin                events   102  716353 1.423879e-04
## 3682  Sandra Erwin                 light   102  716353 1.423879e-04
## 3683  Sandra Erwin              organize   102  716353 1.423879e-04
## 3684  Sandra Erwin                 steps   102  716353 1.423879e-04
## 3685    Jeff Foust               adapter   101 1573821 6.417502e-05
## 3686    Jeff Foust                  amid   101 1573821 6.417502e-05
## 3687    Jeff Foust                  colo   101 1573821 6.417502e-05
## 3688    Jeff Foust            committees   101 1573821 6.417502e-05
## 3689    Jeff Foust       competitiveness   101 1573821 6.417502e-05
## 3690    Jeff Foust            concluding   101 1573821 6.417502e-05
## 3691    Jeff Foust         demonstrating   101 1573821 6.417502e-05
## 3692    Jeff Foust              escapade   101 1573821 6.417502e-05
## 3693    Jeff Foust              flexible   101 1573821 6.417502e-05
## 3694    Jeff Foust             francisco   101 1573821 6.417502e-05
## 3695    Jeff Foust               loading   101 1573821 6.417502e-05
## 3696    Jeff Foust             ownership   101 1573821 6.417502e-05
## 3697    Jeff Foust                 posed   101 1573821 6.417502e-05
## 3698    Jeff Foust             receiving   101 1573821 6.417502e-05
## 3699    Jeff Foust                signal   101 1573821 6.417502e-05
## 3700    Jeff Foust                   uag   101 1573821 6.417502e-05
## 3701    Jeff Foust                vacuum   101 1573821 6.417502e-05
## 3702  Sandra Erwin              advances   101  716353 1.409919e-04
## 3703  Sandra Erwin                airmen   101  716353 1.409919e-04
## 3704  Sandra Erwin            bipartisan   101  716353 1.409919e-04
## 3705  Sandra Erwin              elements   101  716353 1.409919e-04
## 3706  Sandra Erwin                levels   101  716353 1.409919e-04
## 3707  Sandra Erwin             principal   101  716353 1.409919e-04
## 3708  Sandra Erwin            regulatory   101  716353 1.409919e-04
## 3709  Sandra Erwin               scolese   101  716353 1.409919e-04
## 3710  Sandra Erwin                 trade   101  716353 1.409919e-04
## 3711    Jeff Foust              avionics   100 1573821 6.353963e-05
## 3712    Jeff Foust                bill’s   100 1573821 6.353963e-05
## 3713    Jeff Foust               capture   100 1573821 6.353963e-05
## 3714    Jeff Foust            contribute   100 1573821 6.353963e-05
## 3715    Jeff Foust          contribution   100 1573821 6.353963e-05
## 3716    Jeff Foust            efficiency   100 1573821 6.353963e-05
## 3717    Jeff Foust                 exist   100 1573821 6.353963e-05
## 3718    Jeff Foust                  flat   100 1573821 6.353963e-05
## 3719    Jeff Foust              humanity   100 1573821 6.353963e-05
## 3720    Jeff Foust                 input   100 1573821 6.353963e-05
## 3721    Jeff Foust                  labs   100 1573821 6.353963e-05
## 3722    Jeff Foust                mishap   100 1573821 6.353963e-05
## 3723    Jeff Foust               onboard   100 1573821 6.353963e-05
## 3724    Jeff Foust             organized   100 1573821 6.353963e-05
## 3725    Jeff Foust              practice   100 1573821 6.353963e-05
## 3726    Jeff Foust           president’s   100 1573821 6.353963e-05
## 3727    Jeff Foust                 saudi   100 1573821 6.353963e-05
## 3728    Jeff Foust          surveillance   100 1573821 6.353963e-05
## 3729    Jeff Foust                 table   100 1573821 6.353963e-05
## 3730  Sandra Erwin               biggest   100  716353 1.395960e-04
## 3731  Sandra Erwin               centers   100  716353 1.395960e-04
## 3732  Sandra Erwin                 goals   100  716353 1.395960e-04
## 3733  Sandra Erwin         headquartered   100  716353 1.395960e-04
## 3734  Sandra Erwin               parsons   100  716353 1.395960e-04
## 3735  Sandra Erwin             receivers   100  716353 1.395960e-04
## 3736  Sandra Erwin       recommendations   100  716353 1.395960e-04
## 3737  Sandra Erwin           spaceflight   100  716353 1.395960e-04
## 3738  Sandra Erwin                 views   100  716353 1.395960e-04
## 3739    Jeff Foust         communication    99 1573821 6.290423e-05
## 3740    Jeff Foust             composite    99 1573821 6.290423e-05
## 3741    Jeff Foust                credit    99 1573821 6.290423e-05
## 3742    Jeff Foust              distance    99 1573821 6.290423e-05
## 3743    Jeff Foust               earth’s    99 1573821 6.290423e-05
## 3744    Jeff Foust             investing    99 1573821 6.290423e-05
## 3745    Jeff Foust                marked    99 1573821 6.290423e-05
## 3746    Jeff Foust           probability    99 1573821 6.290423e-05
## 3747    Jeff Foust               reforms    99 1573821 6.290423e-05
## 3748    Jeff Foust                 relay    99 1573821 6.290423e-05
## 3749    Jeff Foust            reportedly    99 1573821 6.290423e-05
## 3750  Sandra Erwin                   arm    99  716353 1.382000e-04
## 3751  Sandra Erwin            conditions    99  716353 1.382000e-04
## 3752  Sandra Erwin              evaluate    99  716353 1.382000e-04
## 3753  Sandra Erwin               explain    99  716353 1.382000e-04
## 3754  Sandra Erwin                  join    99  716353 1.382000e-04
## 3755  Sandra Erwin                miller    99  716353 1.382000e-04
## 3756  Sandra Erwin              policies    99  716353 1.382000e-04
## 3757  Sandra Erwin            prototypes    99  716353 1.382000e-04
## 3758  Sandra Erwin               reserve    99  716353 1.382000e-04
## 3759  Sandra Erwin               reviews    99  716353 1.382000e-04
## 3760  Sandra Erwin              ventures    99  716353 1.382000e-04
## 3761    Jeff Foust                cctcap    98 1573821 6.226883e-05
## 3762    Jeff Foust               chamber    98 1573821 6.226883e-05
## 3763    Jeff Foust            consortium    98 1573821 6.226883e-05
## 3764    Jeff Foust            copernicus    98 1573821 6.226883e-05
## 3765    Jeff Foust              decrease    98 1573821 6.226883e-05
## 3766    Jeff Foust           differences    98 1573821 6.226883e-05
## 3767    Jeff Foust            explicitly    98 1573821 6.226883e-05
## 3768    Jeff Foust              historic    98 1573821 6.226883e-05
## 3769    Jeff Foust                  hole    98 1573821 6.226883e-05
## 3770    Jeff Foust                  lisa    98 1573821 6.226883e-05
## 3771    Jeff Foust               message    98 1573821 6.226883e-05
## 3772    Jeff Foust             peregrine    98 1573821 6.226883e-05
## 3773    Jeff Foust            represents    98 1573821 6.226883e-05
## 3774    Jeff Foust               sectors    98 1573821 6.226883e-05
## 3775    Jeff Foust                sooner    98 1573821 6.226883e-05
## 3776    Jeff Foust             synthetic    98 1573821 6.226883e-05
## 3777    Jeff Foust                   ted    98 1573821 6.226883e-05
## 3778    Jeff Foust                    tv    98 1573821 6.226883e-05
## 3779    Jeff Foust                  we’d    98 1573821 6.226883e-05
## 3780  Sandra Erwin              fighting    98  716353 1.368041e-04
## 3781  Sandra Erwin           flexibility    98  716353 1.368041e-04
## 3782  Sandra Erwin              intelsat    98  716353 1.368041e-04
## 3783  Sandra Erwin              original    98  716353 1.368041e-04
## 3784  Sandra Erwin                robert    98  716353 1.368041e-04
## 3785  Sandra Erwin               running    98  716353 1.368041e-04
## 3786  Sandra Erwin                  sole    98  716353 1.368041e-04
## 3787  Sandra Erwin                 texas    98  716353 1.368041e-04
## 3788  Sandra Erwin                troops    98  716353 1.368041e-04
## 3789  Sandra Erwin                  vote    98  716353 1.368041e-04
## 3790    Jeff Foust            affordable    97 1573821 6.163344e-05
## 3791    Jeff Foust              conclude    97 1573821 6.163344e-05
## 3792    Jeff Foust              conflict    97 1573821 6.163344e-05
## 3793    Jeff Foust              couldn’t    97 1573821 6.163344e-05
## 3794    Jeff Foust               covered    97 1573821 6.163344e-05
## 3795    Jeff Foust                   csf    97 1573821 6.163344e-05
## 3796    Jeff Foust               enacted    97 1573821 6.163344e-05
## 3797    Jeff Foust                 fewer    97 1573821 6.163344e-05
## 3798    Jeff Foust             finalists    97 1573821 6.163344e-05
## 3799    Jeff Foust           highlighted    97 1573821 6.163344e-05
## 3800    Jeff Foust           implemented    97 1573821 6.163344e-05
## 3801    Jeff Foust               managed    97 1573821 6.163344e-05
## 3802    Jeff Foust              mikulski    97 1573821 6.163344e-05
## 3803    Jeff Foust                 moses    97 1573821 6.163344e-05
## 3804    Jeff Foust               natural    97 1573821 6.163344e-05
## 3805    Jeff Foust              pentagon    97 1573821 6.163344e-05
## 3806    Jeff Foust              physical    97 1573821 6.163344e-05
## 3807    Jeff Foust               routine    97 1573821 6.163344e-05
## 3808    Jeff Foust           speculation    97 1573821 6.163344e-05
## 3809    Jeff Foust                    st    97 1573821 6.163344e-05
## 3810  Sandra Erwin               account    97  716353 1.354081e-04
## 3811  Sandra Erwin              appeared    97  716353 1.354081e-04
## 3812  Sandra Erwin               cheaper    97  716353 1.354081e-04
## 3813  Sandra Erwin                ligado    97  716353 1.354081e-04
## 3814  Sandra Erwin                 round    97  716353 1.354081e-04
## 3815  Sandra Erwin                sought    97  716353 1.354081e-04
## 3816  Sandra Erwin                weeden    97  716353 1.354081e-04
## 3817    Jeff Foust           accelerated    96 1573821 6.099804e-05
## 3818    Jeff Foust             excellent    96 1573821 6.099804e-05
## 3819    Jeff Foust                excess    96 1573821 6.099804e-05
## 3820    Jeff Foust                hinted    96 1573821 6.099804e-05
## 3821    Jeff Foust               imagine    96 1573821 6.099804e-05
## 3822    Jeff Foust              isaacman    96 1573821 6.099804e-05
## 3823    Jeff Foust               israeli    96 1573821 6.099804e-05
## 3824    Jeff Foust                  love    96 1573821 6.099804e-05
## 3825    Jeff Foust              maximize    96 1573821 6.099804e-05
## 3826    Jeff Foust                 notes    96 1573821 6.099804e-05
## 3827    Jeff Foust                obtain    96 1573821 6.099804e-05
## 3828    Jeff Foust              properly    96 1573821 6.099804e-05
## 3829    Jeff Foust                 rubio    96 1573821 6.099804e-05
## 3830    Jeff Foust              williams    96 1573821 6.099804e-05
## 3831  Sandra Erwin              cubesats    96  716353 1.340121e-04
## 3832  Sandra Erwin                 delay    96  716353 1.340121e-04
## 3833  Sandra Erwin            eventually    96  716353 1.340121e-04
## 3834  Sandra Erwin             exquisite    96  716353 1.340121e-04
## 3835  Sandra Erwin              function    96  716353 1.340121e-04
## 3836  Sandra Erwin                 naval    96  716353 1.340121e-04
## 3837  Sandra Erwin               purpose    96  716353 1.340121e-04
## 3838  Sandra Erwin               quality    96  716353 1.340121e-04
## 3839  Sandra Erwin             readiness    96  716353 1.340121e-04
## 3840  Sandra Erwin                  sbir    96  716353 1.340121e-04
## 3841  Sandra Erwin               schiess    96  716353 1.340121e-04
## 3842  Sandra Erwin                   stp    96  716353 1.340121e-04
## 3843  Sandra Erwin             supported    96  716353 1.340121e-04
## 3844  Sandra Erwin                  ussf    96  716353 1.340121e-04
## 3845  Sandra Erwin                vendor    96  716353 1.340121e-04
## 3846    Jeff Foust              accepted    95 1573821 6.036265e-05
## 3847    Jeff Foust                aspect    95 1573821 6.036265e-05
## 3848    Jeff Foust                assist    95 1573821 6.036265e-05
## 3849    Jeff Foust                   bfr    95 1573821 6.036265e-05
## 3850    Jeff Foust            candidates    95 1573821 6.036265e-05
## 3851    Jeff Foust              criteria    95 1573821 6.036265e-05
## 3852    Jeff Foust               cutting    95 1573821 6.036265e-05
## 3853    Jeff Foust        demonstrations    95 1573821 6.036265e-05
## 3854    Jeff Foust           destination    95 1573821 6.036265e-05
## 3855    Jeff Foust             directors    95 1573821 6.036265e-05
## 3856    Jeff Foust              domestic    95 1573821 6.036265e-05
## 3857    Jeff Foust           electronics    95 1573821 6.036265e-05
## 3858    Jeff Foust              entering    95 1573821 6.036265e-05
## 3859    Jeff Foust                 firms    95 1573821 6.036265e-05
## 3860    Jeff Foust                halted    95 1573821 6.036265e-05
## 3861    Jeff Foust               kingdom    95 1573821 6.036265e-05
## 3862    Jeff Foust                   pam    95 1573821 6.036265e-05
## 3863    Jeff Foust            principles    95 1573821 6.036265e-05
## 3864    Jeff Foust                  ramp    95 1573821 6.036265e-05
## 3865    Jeff Foust                sherpa    95 1573821 6.036265e-05
## 3866    Jeff Foust               shipped    95 1573821 6.036265e-05
## 3867    Jeff Foust             spacesuit    95 1573821 6.036265e-05
## 3868    Jeff Foust            suffredini    95 1573821 6.036265e-05
## 3869    Jeff Foust               world’s    95 1573821 6.036265e-05
## 3870  Sandra Erwin             amendment    95  716353 1.326162e-04
## 3871  Sandra Erwin           coronavirus    95  716353 1.326162e-04
## 3872  Sandra Erwin                covers    95  716353 1.326162e-04
## 3873  Sandra Erwin           observation    95  716353 1.326162e-04
## 3874    Jeff Foust                   aim    94 1573821 5.972725e-05
## 3875    Jeff Foust                argues    94 1573821 5.972725e-05
## 3876    Jeff Foust                 ceres    94 1573821 5.972725e-05
## 3877    Jeff Foust                 crash    94 1573821 5.972725e-05
## 3878    Jeff Foust             generated    94 1573821 5.972725e-05
## 3879    Jeff Foust             gradually    94 1573821 5.972725e-05
## 3880    Jeff Foust         investigating    94 1573821 5.972725e-05
## 3881    Jeff Foust    megaconstellations    94 1573821 5.972725e-05
## 3882    Jeff Foust                motors    94 1573821 5.972725e-05
## 3883    Jeff Foust            mulholland    94 1573821 5.972725e-05
## 3884    Jeff Foust                 norms    94 1573821 5.972725e-05
## 3885    Jeff Foust              parallel    94 1573821 5.972725e-05
## 3886    Jeff Foust             privately    94 1573821 5.972725e-05
## 3887    Jeff Foust            reasonable    94 1573821 5.972725e-05
## 3888    Jeff Foust            suggesting    94 1573821 5.972725e-05
## 3889    Jeff Foust                   vab    94 1573821 5.972725e-05
## 3890    Jeff Foust              vicinity    94 1573821 5.972725e-05
## 3891  Sandra Erwin          alternatives    94  716353 1.312202e-04
## 3892  Sandra Erwin            approaches    94  716353 1.312202e-04
## 3893  Sandra Erwin                basing    94  716353 1.312202e-04
## 3894  Sandra Erwin                 class    94  716353 1.312202e-04
## 3895  Sandra Erwin               climate    94  716353 1.312202e-04
## 3896  Sandra Erwin             grumman’s    94  716353 1.312202e-04
## 3897  Sandra Erwin             initially    94  716353 1.312202e-04
## 3898  Sandra Erwin               ongoing    94  716353 1.312202e-04
## 3899  Sandra Erwin                 pilot    94  716353 1.312202e-04
## 3900  Sandra Erwin                update    94  716353 1.312202e-04
## 3901    Jeff Foust            accomplish    93 1573821 5.909185e-05
## 3902    Jeff Foust                   age    93 1573821 5.909185e-05
## 3903    Jeff Foust                agenda    93 1573821 5.909185e-05
## 3904    Jeff Foust                  ames    93 1573821 5.909185e-05
## 3905    Jeff Foust             assembled    93 1573821 5.909185e-05
## 3906    Jeff Foust             beresheet    93 1573821 5.909185e-05
## 3907    Jeff Foust                  beta    93 1573821 5.909185e-05
## 3908    Jeff Foust           essentially    93 1573821 5.909185e-05
## 3909    Jeff Foust             examining    93 1573821 5.909185e-05
## 3910    Jeff Foust               execute    93 1573821 5.909185e-05
## 3911    Jeff Foust                   iai    93 1573821 5.909185e-05
## 3912    Jeff Foust         malfunctioned    93 1573821 5.909185e-05
## 3913    Jeff Foust         manufacturers    93 1573821 5.909185e-05
## 3914    Jeff Foust                   map    93 1573821 5.909185e-05
## 3915    Jeff Foust                nearby    93 1573821 5.909185e-05
## 3916    Jeff Foust                  park    93 1573821 5.909185e-05
## 3917    Jeff Foust                  pick    93 1573821 5.909185e-05
## 3918    Jeff Foust                profit    93 1573821 5.909185e-05
## 3919    Jeff Foust              revenues    93 1573821 5.909185e-05
## 3920    Jeff Foust            spacesuits    93 1573821 5.909185e-05
## 3921    Jeff Foust                 speak    93 1573821 5.909185e-05
## 3922    Jeff Foust               suggest    93 1573821 5.909185e-05
## 3923    Jeff Foust                 watch    93 1573821 5.909185e-05
## 3924    Jeff Foust                 women    93 1573821 5.909185e-05
## 3925  Sandra Erwin                 apply    93  716353 1.298243e-04
## 3926  Sandra Erwin               arsenal    93  716353 1.298243e-04
## 3927  Sandra Erwin                 bases    93  716353 1.298243e-04
## 3928  Sandra Erwin                 basis    93  716353 1.298243e-04
## 3929  Sandra Erwin           battlefield    93  716353 1.298243e-04
## 3930  Sandra Erwin              bringing    93  716353 1.298243e-04
## 3931  Sandra Erwin                define    93  716353 1.298243e-04
## 3932  Sandra Erwin             dominance    93  716353 1.298243e-04
## 3933  Sandra Erwin              estimate    93  716353 1.298243e-04
## 3934  Sandra Erwin               factory    93  716353 1.298243e-04
## 3935  Sandra Erwin                   meo    93  716353 1.298243e-04
## 3936  Sandra Erwin                   ota    93  716353 1.298243e-04
## 3937  Sandra Erwin            protecting    93  716353 1.298243e-04
## 3938  Sandra Erwin                strike    93  716353 1.298243e-04
## 3939    Jeff Foust          astronautics    92 1573821 5.845646e-05
## 3940    Jeff Foust                 black    92 1573821 5.845646e-05
## 3941    Jeff Foust                  dark    92 1573821 5.845646e-05
## 3942    Jeff Foust              district    92 1573821 5.845646e-05
## 3943    Jeff Foust             ecosystem    92 1573821 5.845646e-05
## 3944    Jeff Foust                france    92 1573821 5.845646e-05
## 3945    Jeff Foust             improving    92 1573821 5.845646e-05
## 3946    Jeff Foust                 lives    92 1573821 5.845646e-05
## 3947    Jeff Foust                   msr    92 1573821 5.845646e-05
## 3948    Jeff Foust          participated    92 1573821 5.845646e-05
## 3949    Jeff Foust             recognize    92 1573821 5.845646e-05
## 3950    Jeff Foust                retire    92 1573821 5.845646e-05
## 3951    Jeff Foust              spacecom    92 1573821 5.845646e-05
## 3952    Jeff Foust           substantial    92 1573821 5.845646e-05
## 3953    Jeff Foust             targeting    92 1573821 5.845646e-05
## 3954  Sandra Erwin               achieve    92  716353 1.284283e-04
## 3955  Sandra Erwin                   ala    92  716353 1.284283e-04
## 3956  Sandra Erwin             australia    92  716353 1.284283e-04
## 3957  Sandra Erwin            delivering    92  716353 1.284283e-04
## 3958  Sandra Erwin          demonstrated    92  716353 1.284283e-04
## 3959  Sandra Erwin            expendable    92  716353 1.284283e-04
## 3960  Sandra Erwin                 lines    92  716353 1.284283e-04
## 3961  Sandra Erwin               portion    92  716353 1.284283e-04
## 3962  Sandra Erwin                   pre    92  716353 1.284283e-04
## 3963  Sandra Erwin              shotwell    92  716353 1.284283e-04
## 3964  Sandra Erwin             slingshot    92  716353 1.284283e-04
## 3965  Sandra Erwin                  spec    92  716353 1.284283e-04
## 3966  Sandra Erwin               winners    92  716353 1.284283e-04
## 3967    Jeff Foust              arranged    91 1573821 5.782106e-05
## 3968    Jeff Foust               backlog    91 1573821 5.782106e-05
## 3969    Jeff Foust                   ban    91 1573821 5.782106e-05
## 3970    Jeff Foust            colleagues    91 1573821 5.782106e-05
## 3971    Jeff Foust            definition    91 1573821 5.782106e-05
## 3972    Jeff Foust                  fail    91 1573821 5.782106e-05
## 3973    Jeff Foust              familiar    91 1573821 5.782106e-05
## 3974    Jeff Foust                  lori    91 1573821 5.782106e-05
## 3975    Jeff Foust                  lose    91 1573821 5.782106e-05
## 3976    Jeff Foust             marketing    91 1573821 5.782106e-05
## 3977    Jeff Foust                morgan    91 1573821 5.782106e-05
## 3978    Jeff Foust              nation’s    91 1573821 5.782106e-05
## 3979    Jeff Foust             prelaunch    91 1573821 5.782106e-05
## 3980    Jeff Foust                retain    91 1573821 5.782106e-05
## 3981    Jeff Foust                  ride    91 1573821 5.782106e-05
## 3982    Jeff Foust                 scrub    91 1573821 5.782106e-05
## 3983    Jeff Foust              strongly    91 1573821 5.782106e-05
## 3984    Jeff Foust             successor    91 1573821 5.782106e-05
## 3985    Jeff Foust               today’s    91 1573821 5.782106e-05
## 3986    Jeff Foust             witnesses    91 1573821 5.782106e-05
## 3987  Sandra Erwin            collection    91  716353 1.270323e-04
## 3988  Sandra Erwin               creates    91  716353 1.270323e-04
## 3989  Sandra Erwin               eastern    91  716353 1.270323e-04
## 3990  Sandra Erwin               enemies    91  716353 1.270323e-04
## 3991  Sandra Erwin          environments    91  716353 1.270323e-04
## 3992  Sandra Erwin               founded    91  716353 1.270323e-04
## 3993  Sandra Erwin                giving    91  716353 1.270323e-04
## 3994  Sandra Erwin                  home    91  716353 1.270323e-04
## 3995  Sandra Erwin                inform    91  716353 1.270323e-04
## 3996  Sandra Erwin               kingdom    91  716353 1.270323e-04
## 3997  Sandra Erwin             performed    91  716353 1.270323e-04
## 3998  Sandra Erwin                series    91  716353 1.270323e-04
## 3999  Sandra Erwin                 solve    91  716353 1.270323e-04
## 4000    Jeff Foust              adjusted    90 1573821 5.718566e-05
## 4001    Jeff Foust             assurance    90 1573821 5.718566e-05
## 4002    Jeff Foust            astroscale    90 1573821 5.718566e-05
## 4003    Jeff Foust               carrier    90 1573821 5.718566e-05
## 4004    Jeff Foust               depends    90 1573821 5.718566e-05
## 4005    Jeff Foust              employee    90 1573821 5.718566e-05
## 4006    Jeff Foust                 error    90 1573821 5.718566e-05
## 4007    Jeff Foust              expanded    90 1573821 5.718566e-05
## 4008    Jeff Foust              founders    90 1573821 5.718566e-05
## 4009    Jeff Foust         gravitational    90 1573821 5.718566e-05
## 4010    Jeff Foust                  horn    90 1573821 5.718566e-05
## 4011    Jeff Foust              maryland    90 1573821 5.718566e-05
## 4012    Jeff Foust            montalbano    90 1573821 5.718566e-05
## 4013    Jeff Foust             observers    90 1573821 5.718566e-05
## 4014    Jeff Foust               opinion    90 1573821 5.718566e-05
## 4015    Jeff Foust              payments    90 1573821 5.718566e-05
## 4016    Jeff Foust                rating    90 1573821 5.718566e-05
## 4017    Jeff Foust             schneider    90 1573821 5.718566e-05
## 4018    Jeff Foust               stating    90 1573821 5.718566e-05
## 4019    Jeff Foust                  tech    90 1573821 5.718566e-05
## 4020    Jeff Foust         technological    90 1573821 5.718566e-05
## 4021  Sandra Erwin              aperture    90  716353 1.256364e-04
## 4022  Sandra Erwin               augment    90  716353 1.256364e-04
## 4023  Sandra Erwin                 boost    90  716353 1.256364e-04
## 4024  Sandra Erwin            compatible    90  716353 1.256364e-04
## 4025  Sandra Erwin             computing    90  716353 1.256364e-04
## 4026  Sandra Erwin          counterspace    90  716353 1.256364e-04
## 4027  Sandra Erwin        demonstrations    90  716353 1.256364e-04
## 4028  Sandra Erwin                  dual    90  716353 1.256364e-04
## 4029  Sandra Erwin              equipped    90  716353 1.256364e-04
## 4030  Sandra Erwin                   eye    90  716353 1.256364e-04
## 4031  Sandra Erwin              invested    90  716353 1.256364e-04
## 4032  Sandra Erwin                 learn    90  716353 1.256364e-04
## 4033  Sandra Erwin               message    90  716353 1.256364e-04
## 4034  Sandra Erwin                 newly    90  716353 1.256364e-04
## 4035  Sandra Erwin               powered    90  716353 1.256364e-04
## 4036  Sandra Erwin                  rand    90  716353 1.256364e-04
## 4037  Sandra Erwin              reliable    90  716353 1.256364e-04
## 4038  Sandra Erwin                  sell    90  716353 1.256364e-04
## 4039  Sandra Erwin                 title    90  716353 1.256364e-04
## 4040  Sandra Erwin               veteran    90  716353 1.256364e-04
## 4041    Jeff Foust                 1990s    89 1573821 5.655027e-05
## 4042    Jeff Foust                   aas    89 1573821 5.655027e-05
## 4043    Jeff Foust              balloons    89 1573821 5.655027e-05
## 4044    Jeff Foust              deposits    89 1573821 5.655027e-05
## 4045    Jeff Foust                dscovr    89 1573821 5.655027e-05
## 4046    Jeff Foust            electrical    89 1573821 5.655027e-05
## 4047    Jeff Foust             emissions    89 1573821 5.655027e-05
## 4048    Jeff Foust               enables    89 1573821 5.655027e-05
## 4049    Jeff Foust                 exact    89 1573821 5.655027e-05
## 4050    Jeff Foust             expecting    89 1573821 5.655027e-05
## 4051    Jeff Foust              findings    89 1573821 5.655027e-05
## 4052    Jeff Foust            frequently    89 1573821 5.655027e-05
## 4053    Jeff Foust             happening    89 1573821 5.655027e-05
## 4054    Jeff Foust               hopeful    89 1573821 5.655027e-05
## 4055    Jeff Foust                modest    89 1573821 5.655027e-05
## 4056    Jeff Foust               propose    89 1573821 5.655027e-05
## 4057    Jeff Foust                 rated    89 1573821 5.655027e-05
## 4058    Jeff Foust                   rs1    89 1573821 5.655027e-05
## 4059    Jeff Foust               stage’s    89 1573821 5.655027e-05
## 4060    Jeff Foust            streamline    89 1573821 5.655027e-05
## 4061    Jeff Foust                  tied    89 1573821 5.655027e-05
## 4062    Jeff Foust                  type    89 1573821 5.655027e-05
## 4063    Jeff Foust               unusual    89 1573821 5.655027e-05
## 4064  Sandra Erwin         environmental    89  716353 1.242404e-04
## 4065  Sandra Erwin             explained    89  716353 1.242404e-04
## 4066  Sandra Erwin                 found    89  716353 1.242404e-04
## 4067  Sandra Erwin           governments    89  716353 1.242404e-04
## 4068  Sandra Erwin                  hope    89  716353 1.242404e-04
## 4069  Sandra Erwin                 image    89  716353 1.242404e-04
## 4070  Sandra Erwin                  live    89  716353 1.242404e-04
## 4071  Sandra Erwin               loverro    89  716353 1.242404e-04
## 4072  Sandra Erwin             preparing    89  716353 1.242404e-04
## 4073  Sandra Erwin                prices    89  716353 1.242404e-04
## 4074  Sandra Erwin                pursue    89  716353 1.242404e-04
## 4075  Sandra Erwin                 smc’s    89  716353 1.242404e-04
## 4076  Sandra Erwin              squadron    89  716353 1.242404e-04
## 4077  Sandra Erwin            subsidiary    89  716353 1.242404e-04
## 4078  Sandra Erwin                talked    89  716353 1.242404e-04
## 4079    Jeff Foust           approaching    88 1573821 5.591487e-05
## 4080    Jeff Foust            collection    88 1573821 5.591487e-05
## 4081    Jeff Foust         cybersecurity    88 1573821 5.591487e-05
## 4082    Jeff Foust               enabled    88 1573821 5.591487e-05
## 4083    Jeff Foust             exception    88 1573821 5.591487e-05
## 4084    Jeff Foust               ignited    88 1573821 5.591487e-05
## 4085    Jeff Foust           investigate    88 1573821 5.591487e-05
## 4086    Jeff Foust               observe    88 1573821 5.591487e-05
## 4087    Jeff Foust             o’connell    88 1573821 5.591487e-05
## 4088    Jeff Foust              reviewed    88 1573821 5.591487e-05
## 4089    Jeff Foust                rounds    88 1573821 5.591487e-05
## 4090    Jeff Foust               secured    88 1573821 5.591487e-05
## 4091    Jeff Foust                 sharp    88 1573821 5.591487e-05
## 4092  Sandra Erwin              assembly    88  716353 1.228445e-04
## 4093  Sandra Erwin              briefing    88  716353 1.228445e-04
## 4094  Sandra Erwin                closer    88  716353 1.228445e-04
## 4095  Sandra Erwin                   fix    88  716353 1.228445e-04
## 4096  Sandra Erwin            kilometers    88  716353 1.228445e-04
## 4097  Sandra Erwin        nontraditional    88  716353 1.228445e-04
## 4098  Sandra Erwin            officially    88  716353 1.228445e-04
## 4099  Sandra Erwin              powerful    88  716353 1.228445e-04
## 4100  Sandra Erwin               prevent    88  716353 1.228445e-04
## 4101  Sandra Erwin                 relay    88  716353 1.228445e-04
## 4102  Sandra Erwin           sustainment    88  716353 1.228445e-04
## 4103  Sandra Erwin                   tap    88  716353 1.228445e-04
## 4104  Sandra Erwin              upgrades    88  716353 1.228445e-04
## 4105    Jeff Foust                    3d    87 1573821 5.527948e-05
## 4106    Jeff Foust             allocated    87 1573821 5.527948e-05
## 4107    Jeff Foust            anticipate    87 1573821 5.527948e-05
## 4108    Jeff Foust                 burns    87 1573821 5.527948e-05
## 4109    Jeff Foust                 cloud    87 1573821 5.527948e-05
## 4110    Jeff Foust          digitalglobe    87 1573821 5.527948e-05
## 4111    Jeff Foust              emirates    87 1573821 5.527948e-05
## 4112    Jeff Foust                   eve    87 1573821 5.527948e-05
## 4113    Jeff Foust                   eye    87 1573821 5.527948e-05
## 4114    Jeff Foust              featured    87 1573821 5.527948e-05
## 4115    Jeff Foust               healthy    87 1573821 5.527948e-05
## 4116    Jeff Foust             introduce    87 1573821 5.527948e-05
## 4117    Jeff Foust                listed    87 1573821 5.527948e-05
## 4118    Jeff Foust                 loral    87 1573821 5.527948e-05
## 4119    Jeff Foust             magnitude    87 1573821 5.527948e-05
## 4120    Jeff Foust              monteith    87 1573821 5.527948e-05
## 4121    Jeff Foust                 moons    87 1573821 5.527948e-05
## 4122    Jeff Foust                museum    87 1573821 5.527948e-05
## 4123    Jeff Foust             precursor    87 1573821 5.527948e-05
## 4124    Jeff Foust               quantum    87 1573821 5.527948e-05
## 4125    Jeff Foust               rollout    87 1573821 5.527948e-05
## 4126    Jeff Foust                  soil    87 1573821 5.527948e-05
## 4127    Jeff Foust         traditionally    87 1573821 5.527948e-05
## 4128    Jeff Foust               upgrade    87 1573821 5.527948e-05
## 4129    Jeff Foust                 vande    87 1573821 5.527948e-05
## 4130    Jeff Foust              welcomed    87 1573821 5.527948e-05
## 4131    Jeff Foust                 woman    87 1573821 5.527948e-05
## 4132  Sandra Erwin               allowed    87  716353 1.214485e-04
## 4133  Sandra Erwin              approval    87  716353 1.214485e-04
## 4134  Sandra Erwin             discussed    87  716353 1.214485e-04
## 4135  Sandra Erwin                easier    87  716353 1.214485e-04
## 4136  Sandra Erwin              enlisted    87  716353 1.214485e-04
## 4137  Sandra Erwin              guetlein    87  716353 1.214485e-04
## 4138  Sandra Erwin                 kitay    87  716353 1.214485e-04
## 4139  Sandra Erwin              managing    87  716353 1.214485e-04
## 4140  Sandra Erwin              maneuver    87  716353 1.214485e-04
## 4141  Sandra Erwin            protection    87  716353 1.214485e-04
## 4142  Sandra Erwin                  rate    87  716353 1.214485e-04
## 4143  Sandra Erwin             schriever    87  716353 1.214485e-04
## 4144  Sandra Erwin             spacewerx    87  716353 1.214485e-04
## 4145  Sandra Erwin                stages    87  716353 1.214485e-04
## 4146  Sandra Erwin                viable    87  716353 1.214485e-04
## 4147  Sandra Erwin                  west    87  716353 1.214485e-04
## 4148    Jeff Foust                 argue    86 1573821 5.464408e-05
## 4149    Jeff Foust               attract    86 1573821 5.464408e-05
## 4150    Jeff Foust               battery    86 1573821 5.464408e-05
## 4151    Jeff Foust            composites    86 1573821 5.464408e-05
## 4152    Jeff Foust              declared    86 1573821 5.464408e-05
## 4153    Jeff Foust                fairly    86 1573821 5.464408e-05
## 4154    Jeff Foust                  game    86 1573821 5.464408e-05
## 4155    Jeff Foust               griffin    86 1573821 5.464408e-05
## 4156    Jeff Foust             launchers    86 1573821 5.464408e-05
## 4157    Jeff Foust                speeds    86 1573821 5.464408e-05
## 4158    Jeff Foust                square    86 1573821 5.464408e-05
## 4159    Jeff Foust               targets    86 1573821 5.464408e-05
## 4160    Jeff Foust                traded    86 1573821 5.464408e-05
## 4161    Jeff Foust             worldwide    86 1573821 5.464408e-05
## 4162  Sandra Erwin         association’s    86  716353 1.200525e-04
## 4163  Sandra Erwin                 break    86  716353 1.200525e-04
## 4164  Sandra Erwin                  brig    86  716353 1.200525e-04
## 4165  Sandra Erwin              criteria    86  716353 1.200525e-04
## 4166  Sandra Erwin                  doug    86  716353 1.200525e-04
## 4167  Sandra Erwin              flexible    86  716353 1.200525e-04
## 4168  Sandra Erwin                 front    86  716353 1.200525e-04
## 4169  Sandra Erwin               hawkeye    86  716353 1.200525e-04
## 4170  Sandra Erwin                 inter    86  716353 1.200525e-04
## 4171  Sandra Erwin                object    86  716353 1.200525e-04
## 4172  Sandra Erwin               offices    86  716353 1.200525e-04
## 4173  Sandra Erwin                 pitch    86  716353 1.200525e-04
## 4174  Sandra Erwin               posture    86  716353 1.200525e-04
## 4175  Sandra Erwin           requirement    86  716353 1.200525e-04
## 4176  Sandra Erwin                   ssa    86  716353 1.200525e-04
## 4177    Jeff Foust              accurate    85 1573821 5.400868e-05
## 4178    Jeff Foust                 armed    85 1573821 5.400868e-05
## 4179    Jeff Foust              attended    85 1573821 5.400868e-05
## 4180    Jeff Foust             attendees    85 1573821 5.400868e-05
## 4181    Jeff Foust              bowersox    85 1573821 5.400868e-05
## 4182    Jeff Foust              center’s    85 1573821 5.400868e-05
## 4183    Jeff Foust            classified    85 1573821 5.400868e-05
## 4184    Jeff Foust                  cold    85 1573821 5.400868e-05
## 4185    Jeff Foust          department’s    85 1573821 5.400868e-05
## 4186    Jeff Foust             enceladus    85 1573821 5.400868e-05
## 4187    Jeff Foust             favorable    85 1573821 5.400868e-05
## 4188    Jeff Foust                  fine    85 1573821 5.400868e-05
## 4189    Jeff Foust               handful    85 1573821 5.400868e-05
## 4190    Jeff Foust              heritage    85 1573821 5.400868e-05
## 4191    Jeff Foust                 mixed    85 1573821 5.400868e-05
## 4192    Jeff Foust                 moves    85 1573821 5.400868e-05
## 4193    Jeff Foust              networks    85 1573821 5.400868e-05
## 4194    Jeff Foust           preparation    85 1573821 5.400868e-05
## 4195    Jeff Foust             relations    85 1573821 5.400868e-05
## 4196    Jeff Foust               removed    85 1573821 5.400868e-05
## 4197    Jeff Foust             responses    85 1573821 5.400868e-05
## 4198    Jeff Foust           technically    85 1573821 5.400868e-05
## 4199    Jeff Foust              valuable    85 1573821 5.400868e-05
## 4200    Jeff Foust              warnings    85 1573821 5.400868e-05
## 4201    Jeff Foust               windows    85 1573821 5.400868e-05
## 4202  Sandra Erwin                 agree    85  716353 1.186566e-04
## 4203  Sandra Erwin                canada    85  716353 1.186566e-04
## 4204  Sandra Erwin               cutting    85  716353 1.186566e-04
## 4205  Sandra Erwin               defined    85  716353 1.186566e-04
## 4206  Sandra Erwin               keeping    85  716353 1.186566e-04
## 4207  Sandra Erwin               methods    85  716353 1.186566e-04
## 4208  Sandra Erwin               opposed    85  716353 1.186566e-04
## 4209  Sandra Erwin               reforms    85  716353 1.186566e-04
## 4210  Sandra Erwin                 ships    85  716353 1.186566e-04
## 4211  Sandra Erwin                 teams    85  716353 1.186566e-04
## 4212  Sandra Erwin                thomas    85  716353 1.186566e-04
## 4213  Sandra Erwin           transaction    85  716353 1.186566e-04
## 4214  Sandra Erwin              underway    85  716353 1.186566e-04
## 4215    Jeff Foust               arecibo    84 1573821 5.337329e-05
## 4216    Jeff Foust                 claim    84 1573821 5.337329e-05
## 4217    Jeff Foust               cleared    84 1573821 5.337329e-05
## 4218    Jeff Foust         comprehensive    84 1573821 5.337329e-05
## 4219    Jeff Foust             corporate    84 1573821 5.337329e-05
## 4220    Jeff Foust           encountered    84 1573821 5.337329e-05
## 4221    Jeff Foust                   eus    84 1573821 5.337329e-05
## 4222    Jeff Foust               extends    84 1573821 5.337329e-05
## 4223    Jeff Foust          government’s    84 1573821 5.337329e-05
## 4224    Jeff Foust                   hei    84 1573821 5.337329e-05
## 4225    Jeff Foust         hyperspectral    84 1573821 5.337329e-05
## 4226    Jeff Foust               layoffs    84 1573821 5.337329e-05
## 4227    Jeff Foust                 marks    84 1573821 5.337329e-05
## 4228    Jeff Foust              newspace    84 1573821 5.337329e-05
## 4229    Jeff Foust            standalone    84 1573821 5.337329e-05
## 4230    Jeff Foust            standpoint    84 1573821 5.337329e-05
## 4231    Jeff Foust           tentatively    84 1573821 5.337329e-05
## 4232    Jeff Foust            terminated    84 1573821 5.337329e-05
## 4233    Jeff Foust                  user    84 1573821 5.337329e-05
## 4234    Jeff Foust               virtual    84 1573821 5.337329e-05
## 4235    Jeff Foust                  wall    84 1573821 5.337329e-05
## 4236  Sandra Erwin                  adam    84  716353 1.172606e-04
## 4237  Sandra Erwin            affordable    84  716353 1.172606e-04
## 4238  Sandra Erwin           challenging    84  716353 1.172606e-04
## 4239  Sandra Erwin            completely    84  716353 1.172606e-04
## 4240  Sandra Erwin          coordination    84  716353 1.172606e-04
## 4241  Sandra Erwin              creation    84  716353 1.172606e-04
## 4242  Sandra Erwin                driven    84  716353 1.172606e-04
## 4243  Sandra Erwin                 exist    84  716353 1.172606e-04
## 4244  Sandra Erwin                 filed    84  716353 1.172606e-04
## 4245  Sandra Erwin                  gain    84  716353 1.172606e-04
## 4246  Sandra Erwin                   gap    84  716353 1.172606e-04
## 4247  Sandra Erwin             guardians    84  716353 1.172606e-04
## 4248  Sandra Erwin                 helps    84  716353 1.172606e-04
## 4249  Sandra Erwin                mature    84  716353 1.172606e-04
## 4250  Sandra Erwin              suggests    84  716353 1.172606e-04
## 4251    Jeff Foust               aborted    83 1573821 5.273789e-05
## 4252    Jeff Foust                advice    83 1573821 5.273789e-05
## 4253    Jeff Foust                  busy    83 1573821 5.273789e-05
## 4254    Jeff Foust              commands    83 1573821 5.273789e-05
## 4255    Jeff Foust               driving    83 1573821 5.273789e-05
## 4256    Jeff Foust              exceeded    83 1573821 5.273789e-05
## 4257    Jeff Foust                filled    83 1573821 5.273789e-05
## 4258    Jeff Foust                israël    83 1573821 5.273789e-05
## 4259    Jeff Foust               morhard    83 1573821 5.273789e-05
## 4260    Jeff Foust                 movie    83 1573821 5.273789e-05
## 4261    Jeff Foust              northern    83 1573821 5.273789e-05
## 4262    Jeff Foust                refine    83 1573821 5.273789e-05
## 4263    Jeff Foust            rulemaking    83 1573821 5.273789e-05
## 4264    Jeff Foust              shifting    83 1573821 5.273789e-05
## 4265    Jeff Foust              shireman    83 1573821 5.273789e-05
## 4266    Jeff Foust                 sixth    83 1573821 5.273789e-05
## 4267    Jeff Foust                   sts    83 1573821 5.273789e-05
## 4268    Jeff Foust          transporting    83 1573821 5.273789e-05
## 4269    Jeff Foust             ukrainian    83 1573821 5.273789e-05
## 4270    Jeff Foust                 votes    83 1573821 5.273789e-05
## 4271    Jeff Foust               whitson    83 1573821 5.273789e-05
## 4272    Jeff Foust                  wing    83 1573821 5.273789e-05
## 4273  Sandra Erwin              aviation    83  716353 1.158647e-04
## 4274  Sandra Erwin               darpa’s    83  716353 1.158647e-04
## 4275  Sandra Erwin                 deals    83  716353 1.158647e-04
## 4276  Sandra Erwin                formed    83  716353 1.158647e-04
## 4277  Sandra Erwin                 globe    83  716353 1.158647e-04
## 4278  Sandra Erwin               haven’t    83  716353 1.158647e-04
## 4279  Sandra Erwin                  hear    83  716353 1.158647e-04
## 4280  Sandra Erwin             permanent    83  716353 1.158647e-04
## 4281  Sandra Erwin                powers    83  716353 1.158647e-04
## 4282    Jeff Foust              arriving    82 1573821 5.210249e-05
## 4283    Jeff Foust                 comet    82 1573821 5.210249e-05
## 4284    Jeff Foust               creates    82 1573821 5.210249e-05
## 4285    Jeff Foust          disappointed    82 1573821 5.210249e-05
## 4286    Jeff Foust                 drone    82 1573821 5.210249e-05
## 4287    Jeff Foust            generating    82 1573821 5.210249e-05
## 4288    Jeff Foust                 guide    82 1573821 5.210249e-05
## 4289    Jeff Foust              lander’s    82 1573821 5.210249e-05
## 4290    Jeff Foust               nearing    82 1573821 5.210249e-05
## 4291    Jeff Foust            proceeding    82 1573821 5.210249e-05
## 4292    Jeff Foust               roadmap    82 1573821 5.210249e-05
## 4293    Jeff Foust                  seed    82 1573821 5.210249e-05
## 4294    Jeff Foust          stakeholders    82 1573821 5.210249e-05
## 4295    Jeff Foust                 story    82 1573821 5.210249e-05
## 4296    Jeff Foust             sustained    82 1573821 5.210249e-05
## 4297    Jeff Foust                 units    82 1573821 5.210249e-05
## 4298  Sandra Erwin               america    82  716353 1.144687e-04
## 4299  Sandra Erwin          confirmation    82  716353 1.144687e-04
## 4300  Sandra Erwin            criticized    82  716353 1.144687e-04
## 4301  Sandra Erwin               delayed    82  716353 1.144687e-04
## 4302  Sandra Erwin                 derek    82  716353 1.144687e-04
## 4303  Sandra Erwin              ensuring    82  716353 1.144687e-04
## 4304  Sandra Erwin                  flew    82  716353 1.144687e-04
## 4305  Sandra Erwin           perspective    82  716353 1.144687e-04
## 4306  Sandra Erwin           possibility    82  716353 1.144687e-04
## 4307  Sandra Erwin              pressure    82  716353 1.144687e-04
## 4308  Sandra Erwin                 sales    82  716353 1.144687e-04
## 4309  Sandra Erwin                   spy    82  716353 1.144687e-04
## 4310  Sandra Erwin             targeting    82  716353 1.144687e-04
## 4311    Jeff Foust            alliance’s    81 1573821 5.146710e-05
## 4312    Jeff Foust             ambitions    81 1573821 5.146710e-05
## 4313    Jeff Foust         announcements    81 1573821 5.146710e-05
## 4314    Jeff Foust            attempting    81 1573821 5.146710e-05
## 4315    Jeff Foust                   bad    81 1573821 5.146710e-05
## 4316    Jeff Foust                dmitry    81 1573821 5.146710e-05
## 4317    Jeff Foust               dynamic    81 1573821 5.146710e-05
## 4318    Jeff Foust           expectation    81 1573821 5.146710e-05
## 4319    Jeff Foust            finalizing    81 1573821 5.146710e-05
## 4320    Jeff Foust               finance    81 1573821 5.146710e-05
## 4321    Jeff Foust            hypersonic    81 1573821 5.146710e-05
## 4322    Jeff Foust              memorial    81 1573821 5.146710e-05
## 4323    Jeff Foust               missing    81 1573821 5.146710e-05
## 4324    Jeff Foust           mississippi    81 1573821 5.146710e-05
## 4325    Jeff Foust                  pull    81 1573821 5.146710e-05
## 4326    Jeff Foust             releasing    81 1573821 5.146710e-05
## 4327    Jeff Foust              surveyor    81 1573821 5.146710e-05
## 4328    Jeff Foust             suspended    81 1573821 5.146710e-05
## 4329    Jeff Foust             temporary    81 1573821 5.146710e-05
## 4330    Jeff Foust            widespread    81 1573821 5.146710e-05
## 4331  Sandra Erwin             acquiring    81  716353 1.130727e-04
## 4332  Sandra Erwin                  deny    81  716353 1.130727e-04
## 4333  Sandra Erwin                  duty    81  716353 1.130727e-04
## 4334  Sandra Erwin              exciting    81  716353 1.130727e-04
## 4335  Sandra Erwin               execute    81  716353 1.130727e-04
## 4336  Sandra Erwin              maritime    81  716353 1.130727e-04
## 4337  Sandra Erwin                notice    81  716353 1.130727e-04
## 4338  Sandra Erwin        organizational    81  716353 1.130727e-04
## 4339  Sandra Erwin              presence    81  716353 1.130727e-04
## 4340  Sandra Erwin                 ranks    81  716353 1.130727e-04
## 4341  Sandra Erwin               section    81  716353 1.130727e-04
## 4342  Sandra Erwin               whiting    81  716353 1.130727e-04
## 4343    Jeff Foust               amounts    80 1573821 5.083170e-05
## 4344    Jeff Foust                aren’t    80 1573821 5.083170e-05
## 4345    Jeff Foust             assessing    80 1573821 5.083170e-05
## 4346    Jeff Foust            authorized    80 1573821 5.083170e-05
## 4347    Jeff Foust             dragonfly    80 1573821 5.083170e-05
## 4348    Jeff Foust                flybys    80 1573821 5.083170e-05
## 4349    Jeff Foust              hearings    80 1573821 5.083170e-05
## 4350    Jeff Foust          implications    80 1573821 5.083170e-05
## 4351    Jeff Foust               install    80 1573821 5.083170e-05
## 4352    Jeff Foust                 janus    80 1573821 5.083170e-05
## 4353    Jeff Foust              maritime    80 1573821 5.083170e-05
## 4354    Jeff Foust                missed    80 1573821 5.083170e-05
## 4355    Jeff Foust               partial    80 1573821 5.083170e-05
## 4356    Jeff Foust             preferred    80 1573821 5.083170e-05
## 4357    Jeff Foust             qualified    80 1573821 5.083170e-05
## 4358    Jeff Foust                simple    80 1573821 5.083170e-05
## 4359    Jeff Foust               sponsor    80 1573821 5.083170e-05
## 4360    Jeff Foust             sponsored    80 1573821 5.083170e-05
## 4361    Jeff Foust              stallmer    80 1573821 5.083170e-05
## 4362    Jeff Foust                storms    80 1573821 5.083170e-05
## 4363    Jeff Foust             suppliers    80 1573821 5.083170e-05
## 4364    Jeff Foust             surprised    80 1573821 5.083170e-05
## 4365    Jeff Foust             testimony    80 1573821 5.083170e-05
## 4366    Jeff Foust           undisclosed    80 1573821 5.083170e-05
## 4367    Jeff Foust               western    80 1573821 5.083170e-05
## 4368  Sandra Erwin               atomics    80  716353 1.116768e-04
## 4369  Sandra Erwin                canyon    80  716353 1.116768e-04
## 4370  Sandra Erwin            competitor    80  716353 1.116768e-04
## 4371  Sandra Erwin          developments    80  716353 1.116768e-04
## 4372  Sandra Erwin               effects    80  716353 1.116768e-04
## 4373  Sandra Erwin                   era    80  716353 1.116768e-04
## 4374  Sandra Erwin              fielding    80  716353 1.116768e-04
## 4375  Sandra Erwin            individual    80  716353 1.116768e-04
## 4376  Sandra Erwin               picture    80  716353 1.116768e-04
## 4377  Sandra Erwin                   pts    80  716353 1.116768e-04
## 4378  Sandra Erwin                radars    80  716353 1.116768e-04
## 4379  Sandra Erwin                timely    80  716353 1.116768e-04
## 4380  Sandra Erwin                  tool    80  716353 1.116768e-04
## 4381  Sandra Erwin                 tough    80  716353 1.116768e-04
## 4382  Sandra Erwin                 worry    80  716353 1.116768e-04
## 4383    Jeff Foust             acquiring    79 1573821 5.019631e-05
## 4384    Jeff Foust               binding    79 1573821 5.019631e-05
## 4385    Jeff Foust               cassidy    79 1573821 5.019631e-05
## 4386    Jeff Foust         consolidation    79 1573821 5.019631e-05
## 4387    Jeff Foust           determining    79 1573821 5.019631e-05
## 4388    Jeff Foust               digital    79 1573821 5.019631e-05
## 4389    Jeff Foust                   e.u    79 1573821 5.019631e-05
## 4390    Jeff Foust                easily    79 1573821 5.019631e-05
## 4391    Jeff Foust               hopkins    79 1573821 5.019631e-05
## 4392    Jeff Foust          introduction    79 1573821 5.019631e-05
## 4393    Jeff Foust                  lucy    79 1573821 5.019631e-05
## 4394    Jeff Foust                   n.m    79 1573821 5.019631e-05
## 4395    Jeff Foust                   omb    79 1573821 5.019631e-05
## 4396    Jeff Foust           republicans    79 1573821 5.019631e-05
## 4397    Jeff Foust              retiring    79 1573821 5.019631e-05
## 4398    Jeff Foust                   sec    79 1573821 5.019631e-05
## 4399    Jeff Foust              sessions    79 1573821 5.019631e-05
## 4400    Jeff Foust             sirangelo    79 1573821 5.019631e-05
## 4401    Jeff Foust                 spare    79 1573821 5.019631e-05
## 4402    Jeff Foust                stands    79 1573821 5.019631e-05
## 4403    Jeff Foust              universe    79 1573821 5.019631e-05
## 4404    Jeff Foust                winner    79 1573821 5.019631e-05
## 4405  Sandra Erwin                amazon    79  716353 1.102808e-04
## 4406  Sandra Erwin                  amid    79  716353 1.102808e-04
## 4407  Sandra Erwin                   bad    79  716353 1.102808e-04
## 4408  Sandra Erwin               barbara    79  716353 1.102808e-04
## 4409  Sandra Erwin                buyers    79  716353 1.102808e-04
## 4410  Sandra Erwin                  buys    79  716353 1.102808e-04
## 4411  Sandra Erwin                  laid    79  716353 1.102808e-04
## 4412  Sandra Erwin               latency    79  716353 1.102808e-04
## 4413  Sandra Erwin                layers    79  716353 1.102808e-04
## 4414  Sandra Erwin                 legal    79  716353 1.102808e-04
## 4415  Sandra Erwin              pursuing    79  716353 1.102808e-04
## 4416  Sandra Erwin              revealed    79  716353 1.102808e-04
## 4417    Jeff Foust          acquisitions    78 1573821 4.956091e-05
## 4418    Jeff Foust             america’s    78 1573821 4.956091e-05
## 4419    Jeff Foust                commit    78 1573821 4.956091e-05
## 4420    Jeff Foust                comply    78 1573821 4.956091e-05
## 4421    Jeff Foust          contributing    78 1573821 4.956091e-05
## 4422    Jeff Foust                    de    78 1573821 4.956091e-05
## 4423    Jeff Foust            deorbiting    78 1573821 4.956091e-05
## 4424    Jeff Foust             dependent    78 1573821 4.956091e-05
## 4425    Jeff Foust          difficulties    78 1573821 4.956091e-05
## 4426    Jeff Foust             eliminate    78 1573821 4.956091e-05
## 4427    Jeff Foust            expandable    78 1573821 4.956091e-05
## 4428    Jeff Foust                fueled    78 1573821 4.956091e-05
## 4429    Jeff Foust             inflation    78 1573821 4.956091e-05
## 4430    Jeff Foust                 marco    78 1573821 4.956091e-05
## 4431    Jeff Foust               medical    78 1573821 4.956091e-05
## 4432    Jeff Foust              mobility    78 1573821 4.956091e-05
## 4433    Jeff Foust              printing    78 1573821 4.956091e-05
## 4434    Jeff Foust            redundancy    78 1573821 4.956091e-05
## 4435    Jeff Foust                 roman    78 1573821 4.956091e-05
## 4436    Jeff Foust                 titan    78 1573821 4.956091e-05
## 4437    Jeff Foust                  tory    78 1573821 4.956091e-05
## 4438    Jeff Foust                    va    78 1573821 4.956091e-05
## 4439    Jeff Foust                waiver    78 1573821 4.956091e-05
## 4440  Sandra Erwin           atmospheric    78  716353 1.088849e-04
## 4441  Sandra Erwin             directive    78  716353 1.088849e-04
## 4442  Sandra Erwin             influence    78  716353 1.088849e-04
## 4443  Sandra Erwin      intercontinental    78  716353 1.088849e-04
## 4444  Sandra Erwin                   isr    78  716353 1.088849e-04
## 4445  Sandra Erwin                  musk    78  716353 1.088849e-04
## 4446  Sandra Erwin                phased    78  716353 1.088849e-04
## 4447  Sandra Erwin             producing    78  716353 1.088849e-04
## 4448  Sandra Erwin                  race    78  716353 1.088849e-04
## 4449  Sandra Erwin                   red    78  716353 1.088849e-04
## 4450  Sandra Erwin               telesat    78  716353 1.088849e-04
## 4451    Jeff Foust             avoidance    77 1573821 4.892551e-05
## 4452    Jeff Foust              breaking    77 1573821 4.892551e-05
## 4453    Jeff Foust                bright    77 1573821 4.892551e-05
## 4454    Jeff Foust                   car    77 1573821 4.892551e-05
## 4455    Jeff Foust               central    77 1573821 4.892551e-05
## 4456    Jeff Foust            corrective    77 1573821 4.892551e-05
## 4457    Jeff Foust                cosmos    77 1573821 4.892551e-05
## 4458    Jeff Foust                    ed    77 1573821 4.892551e-05
## 4459    Jeff Foust                  gain    77 1573821 4.892551e-05
## 4460    Jeff Foust               lawsuit    77 1573821 4.892551e-05
## 4461    Jeff Foust           legislative    77 1573821 4.892551e-05
## 4462    Jeff Foust                  pads    77 1573821 4.892551e-05
## 4463    Jeff Foust               predict    77 1573821 4.892551e-05
## 4464    Jeff Foust                  rick    77 1573821 4.892551e-05
## 4465    Jeff Foust                  rock    77 1573821 4.892551e-05
## 4466    Jeff Foust              rotation    77 1573821 4.892551e-05
## 4467    Jeff Foust                  sole    77 1573821 4.892551e-05
## 4468    Jeff Foust                 surge    77 1573821 4.892551e-05
## 4469    Jeff Foust               they’ll    77 1573821 4.892551e-05
## 4470  Sandra Erwin             assurance    77  716353 1.074889e-04
## 4471  Sandra Erwin         conversations    77  716353 1.074889e-04
## 4472  Sandra Erwin                costly    77  716353 1.074889e-04
## 4473  Sandra Erwin                  easy    77  716353 1.074889e-04
## 4474  Sandra Erwin                fellow    77  716353 1.074889e-04
## 4475  Sandra Erwin                 heard    77  716353 1.074889e-04
## 4476  Sandra Erwin               history    77  716353 1.074889e-04
## 4477  Sandra Erwin                markup    77  716353 1.074889e-04
## 4478  Sandra Erwin           necessarily    77  716353 1.074889e-04
## 4479  Sandra Erwin                quilty    77  716353 1.074889e-04
## 4480  Sandra Erwin              requests    77  716353 1.074889e-04
## 4481  Sandra Erwin               results    77  716353 1.074889e-04
## 4482  Sandra Erwin              soldiers    77  716353 1.074889e-04
## 4483  Sandra Erwin              standard    77  716353 1.074889e-04
## 4484  Sandra Erwin                status    77  716353 1.074889e-04
## 4485  Sandra Erwin               thermal    77  716353 1.074889e-04
## 4486    Jeff Foust             afternoon    76 1573821 4.829012e-05
## 4487    Jeff Foust             americans    76 1573821 4.829012e-05
## 4488    Jeff Foust                  bids    76 1573821 4.829012e-05
## 4489    Jeff Foust               combine    76 1573821 4.829012e-05
## 4490    Jeff Foust             commanded    76 1573821 4.829012e-05
## 4491    Jeff Foust            controlled    76 1573821 4.829012e-05
## 4492    Jeff Foust            coordinate    76 1573821 4.829012e-05
## 4493    Jeff Foust               desired    76 1573821 4.829012e-05
## 4494    Jeff Foust              dynamics    76 1573821 4.829012e-05
## 4495    Jeff Foust               emerged    76 1573821 4.829012e-05
## 4496    Jeff Foust             emphasize    76 1573821 4.829012e-05
## 4497    Jeff Foust               extract    76 1573821 4.829012e-05
## 4498    Jeff Foust           fundamental    76 1573821 4.829012e-05
## 4499    Jeff Foust                 grace    76 1573821 4.829012e-05
## 4500    Jeff Foust                   joe    76 1573821 4.829012e-05
## 4501    Jeff Foust            leveraging    76 1573821 4.829012e-05
## 4502    Jeff Foust               massive    76 1573821 4.829012e-05
## 4503    Jeff Foust               playing    76 1573821 4.829012e-05
## 4504    Jeff Foust               procure    76 1573821 4.829012e-05
## 4505    Jeff Foust              relative    76 1573821 4.829012e-05
## 4506    Jeff Foust                 talks    76 1573821 4.829012e-05
## 4507    Jeff Foust              tourists    76 1573821 4.829012e-05
## 4508    Jeff Foust                   war    76 1573821 4.829012e-05
## 4509    Jeff Foust                wheels    76 1573821 4.829012e-05
## 4510    Jeff Foust                you’ve    76 1573821 4.829012e-05
## 4511  Sandra Erwin                    3f    76  716353 1.060929e-04
## 4512  Sandra Erwin             beginning    76  716353 1.060929e-04
## 4513  Sandra Erwin          bureaucratic    76  716353 1.060929e-04
## 4514  Sandra Erwin               capture    76  716353 1.060929e-04
## 4515  Sandra Erwin             committed    76  716353 1.060929e-04
## 4516  Sandra Erwin             continued    76  716353 1.060929e-04
## 4517  Sandra Erwin             engineers    76  716353 1.060929e-04
## 4518  Sandra Erwin                  eric    76  716353 1.060929e-04
## 4519  Sandra Erwin          implications    76  716353 1.060929e-04
## 4520  Sandra Erwin            leveraging    76  716353 1.060929e-04
## 4521  Sandra Erwin              majority    76  716353 1.060929e-04
## 4522  Sandra Erwin             materials    76  716353 1.060929e-04
## 4523  Sandra Erwin                merger    76  716353 1.060929e-04
## 4524  Sandra Erwin                 miles    76  716353 1.060929e-04
## 4525  Sandra Erwin             recommend    76  716353 1.060929e-04
## 4526  Sandra Erwin               stephen    76  716353 1.060929e-04
## 4527  Sandra Erwin           superiority    76  716353 1.060929e-04
## 4528  Sandra Erwin              targeted    76  716353 1.060929e-04
## 4529    Jeff Foust          accelerating    75 1573821 4.765472e-05
## 4530    Jeff Foust                 aging    75 1573821 4.765472e-05
## 4531    Jeff Foust                    al    75 1573821 4.765472e-05
## 4532    Jeff Foust           anticipates    75 1573821 4.765472e-05
## 4533    Jeff Foust               boulder    75 1573821 4.765472e-05
## 4534    Jeff Foust              category    75 1573821 4.765472e-05
## 4535    Jeff Foust           commitments    75 1573821 4.765472e-05
## 4536    Jeff Foust          conversation    75 1573821 4.765472e-05
## 4537    Jeff Foust           educational    75 1573821 4.765472e-05
## 4538    Jeff Foust            elliptical    75 1573821 4.765472e-05
## 4539    Jeff Foust              exterior    75 1573821 4.765472e-05
## 4540    Jeff Foust              frequent    75 1573821 4.765472e-05
## 4541    Jeff Foust                 gates    75 1573821 4.765472e-05
## 4542    Jeff Foust                  greg    75 1573821 4.765472e-05
## 4543    Jeff Foust                 helps    75 1573821 4.765472e-05
## 4544    Jeff Foust               house’s    75 1573821 4.765472e-05
## 4545    Jeff Foust               jointly    75 1573821 4.765472e-05
## 4546    Jeff Foust                  mind    75 1573821 4.765472e-05
## 4547    Jeff Foust             panelists    75 1573821 4.765472e-05
## 4548    Jeff Foust              proceeds    75 1573821 4.765472e-05
## 4549    Jeff Foust              reflects    75 1573821 4.765472e-05
## 4550    Jeff Foust                relief    75 1573821 4.765472e-05
## 4551    Jeff Foust            restricted    75 1573821 4.765472e-05
## 4552    Jeff Foust               sarafin    75 1573821 4.765472e-05
## 4553    Jeff Foust             society’s    75 1573821 4.765472e-05
## 4554    Jeff Foust                  tens    75 1573821 4.765472e-05
## 4555    Jeff Foust                  tool    75 1573821 4.765472e-05
## 4556    Jeff Foust               urgency    75 1573821 4.765472e-05
## 4557  Sandra Erwin            coordinate    75  716353 1.046970e-04
## 4558  Sandra Erwin             expressed    75  716353 1.046970e-04
## 4559  Sandra Erwin                 hopes    75  716353 1.046970e-04
## 4560  Sandra Erwin             kilograms    75  716353 1.046970e-04
## 4561  Sandra Erwin                  noaa    75  716353 1.046970e-04
## 4562  Sandra Erwin             synthetic    75  716353 1.046970e-04
## 4563  Sandra Erwin           transferred    75  716353 1.046970e-04
## 4564  Sandra Erwin            ultimately    75  716353 1.046970e-04
## 4565    Jeff Foust                begins    74 1573821 4.701932e-05
## 4566    Jeff Foust                   box    74 1573821 4.701932e-05
## 4567    Jeff Foust            engagement    74 1573821 4.701932e-05
## 4568    Jeff Foust                hakuto    74 1573821 4.701932e-05
## 4569    Jeff Foust               handled    74 1573821 4.701932e-05
## 4570    Jeff Foust               hosting    74 1573821 4.701932e-05
## 4571    Jeff Foust                  matt    74 1573821 4.701932e-05
## 4572    Jeff Foust             mcalister    74 1573821 4.701932e-05
## 4573    Jeff Foust                motion    74 1573821 4.701932e-05
## 4574    Jeff Foust                   nro    74 1573821 4.701932e-05
## 4575    Jeff Foust                   ohb    74 1573821 4.701932e-05
## 4576    Jeff Foust              outreach    74 1573821 4.701932e-05
## 4577    Jeff Foust           outstanding    74 1573821 4.701932e-05
## 4578    Jeff Foust                 plant    74 1573821 4.701932e-05
## 4579    Jeff Foust             premature    74 1573821 4.701932e-05
## 4580    Jeff Foust                regime    74 1573821 4.701932e-05
## 4581    Jeff Foust             resulting    74 1573821 4.701932e-05
## 4582    Jeff Foust              sunlight    74 1573821 4.701932e-05
## 4583    Jeff Foust             unanimous    74 1573821 4.701932e-05
## 4584    Jeff Foust               veritas    74 1573821 4.701932e-05
## 4585    Jeff Foust                  wash    74 1573821 4.701932e-05
## 4586    Jeff Foust                 worst    74 1573821 4.701932e-05
## 4587  Sandra Erwin              advocate    74  716353 1.033010e-04
## 4588  Sandra Erwin                   bae    74  716353 1.033010e-04
## 4589  Sandra Erwin                 brian    74  716353 1.033010e-04
## 4590  Sandra Erwin            consultant    74  716353 1.033010e-04
## 4591  Sandra Erwin           cooperation    74  716353 1.033010e-04
## 4592  Sandra Erwin               driving    74  716353 1.033010e-04
## 4593  Sandra Erwin           effectively    74  716353 1.033010e-04
## 4594  Sandra Erwin               firefly    74  716353 1.033010e-04
## 4595  Sandra Erwin                geoint    74  716353 1.033010e-04
## 4596  Sandra Erwin                handle    74  716353 1.033010e-04
## 4597  Sandra Erwin                    ka    74  716353 1.033010e-04
## 4598  Sandra Erwin                  left    74  716353 1.033010e-04
## 4599  Sandra Erwin              redstone    74  716353 1.033010e-04
## 4600  Sandra Erwin             sensitive    74  716353 1.033010e-04
## 4601  Sandra Erwin         sophisticated    74  716353 1.033010e-04
## 4602  Sandra Erwin           uncertainty    74  716353 1.033010e-04
## 4603  Sandra Erwin           warfighters    74  716353 1.033010e-04
## 4604  Sandra Erwin              wilson’s    74  716353 1.033010e-04
## 4605    Jeff Foust                  alan    73 1573821 4.638393e-05
## 4606    Jeff Foust                  arab    73 1573821 4.638393e-05
## 4607    Jeff Foust                camden    73 1573821 4.638393e-05
## 4608    Jeff Foust                centre    73 1573821 4.638393e-05
## 4609    Jeff Foust                 chose    73 1573821 4.638393e-05
## 4610    Jeff Foust           contracting    73 1573821 4.638393e-05
## 4611    Jeff Foust                dating    73 1573821 4.638393e-05
## 4612    Jeff Foust              examined    73 1573821 4.638393e-05
## 4613    Jeff Foust                finish    73 1573821 4.638393e-05
## 4614    Jeff Foust                 holds    73 1573821 4.638393e-05
## 4615    Jeff Foust                 honor    73 1573821 4.638393e-05
## 4616    Jeff Foust            inflatable    73 1573821 4.638393e-05
## 4617    Jeff Foust                intend    73 1573821 4.638393e-05
## 4618    Jeff Foust                living    73 1573821 4.638393e-05
## 4619    Jeff Foust               meaning    73 1573821 4.638393e-05
## 4620    Jeff Foust              obtained    73 1573821 4.638393e-05
## 4621    Jeff Foust           pressurized    73 1573821 4.638393e-05
## 4622    Jeff Foust              richards    73 1573821 4.638393e-05
## 4623    Jeff Foust               shifted    73 1573821 4.638393e-05
## 4624    Jeff Foust            skepticism    73 1573821 4.638393e-05
## 4625    Jeff Foust                 stuck    73 1573821 4.638393e-05
## 4626    Jeff Foust                 stuff    73 1573821 4.638393e-05
## 4627    Jeff Foust               william    73 1573821 4.638393e-05
## 4628  Sandra Erwin                 basic    73  716353 1.019051e-04
## 4629  Sandra Erwin                caused    73  716353 1.019051e-04
## 4630  Sandra Erwin              develops    73  716353 1.019051e-04
## 4631  Sandra Erwin              doctrine    73  716353 1.019051e-04
## 4632  Sandra Erwin                drones    73  716353 1.019051e-04
## 4633  Sandra Erwin              entrants    73  716353 1.019051e-04
## 4634  Sandra Erwin                fourth    73  716353 1.019051e-04
## 4635  Sandra Erwin               pricing    73  716353 1.019051e-04
## 4636  Sandra Erwin                 south    73  716353 1.019051e-04
## 4637  Sandra Erwin               written    73  716353 1.019051e-04
## 4638    Jeff Foust              accuracy    72 1573821 4.574853e-05
## 4639    Jeff Foust                    aj    72 1573821 4.574853e-05
## 4640    Jeff Foust             automated    72 1573821 4.574853e-05
## 4641    Jeff Foust              billions    72 1573821 4.574853e-05
## 4642    Jeff Foust                builds    72 1573821 4.574853e-05
## 4643    Jeff Foust                  care    72 1573821 4.574853e-05
## 4644    Jeff Foust                 catch    72 1573821 4.574853e-05
## 4645    Jeff Foust            continuity    72 1573821 4.574853e-05
## 4646    Jeff Foust                danger    72 1573821 4.574853e-05
## 4647    Jeff Foust                  drag    72 1573821 4.574853e-05
## 4648    Jeff Foust               edwards    72 1573821 4.574853e-05
## 4649    Jeff Foust           emphasizing    72 1573821 4.574853e-05
## 4650    Jeff Foust               enhance    72 1573821 4.574853e-05
## 4651    Jeff Foust              eventual    72 1573821 4.574853e-05
## 4652    Jeff Foust                   fab    72 1573821 4.574853e-05
## 4653    Jeff Foust                  fair    72 1573821 4.574853e-05
## 4654    Jeff Foust                 fluid    72 1573821 4.574853e-05
## 4655    Jeff Foust               georgia    72 1573821 4.574853e-05
## 4656    Jeff Foust                 heads    72 1573821 4.574853e-05
## 4657    Jeff Foust               journal    72 1573821 4.574853e-05
## 4658    Jeff Foust                   ken    72 1573821 4.574853e-05
## 4659    Jeff Foust                loaded    72 1573821 4.574853e-05
## 4660    Jeff Foust                manber    72 1573821 4.574853e-05
## 4661    Jeff Foust               orlando    72 1573821 4.574853e-05
## 4662    Jeff Foust            reductions    72 1573821 4.574853e-05
## 4663    Jeff Foust          spectrometer    72 1573821 4.574853e-05
## 4664    Jeff Foust                  sstl    72 1573821 4.574853e-05
## 4665    Jeff Foust         stratospheric    72 1573821 4.574853e-05
## 4666    Jeff Foust                suited    72 1573821 4.574853e-05
## 4667    Jeff Foust                  word    72 1573821 4.574853e-05
## 4668  Sandra Erwin                dollar    72  716353 1.005091e-04
## 4669  Sandra Erwin              exercise    72  716353 1.005091e-04
## 4670  Sandra Erwin               explore    72  716353 1.005091e-04
## 4671  Sandra Erwin                 favor    72  716353 1.005091e-04
## 4672  Sandra Erwin                helped    72  716353 1.005091e-04
## 4673  Sandra Erwin                   lsp    72  716353 1.005091e-04
## 4674  Sandra Erwin                 meter    72  716353 1.005091e-04
## 4675  Sandra Erwin                   pad    72  716353 1.005091e-04
## 4676  Sandra Erwin            propellant    72  716353 1.005091e-04
## 4677  Sandra Erwin                   ssc    72  716353 1.005091e-04
## 4678  Sandra Erwin               subject    72  716353 1.005091e-04
## 4679  Sandra Erwin                valley    72  716353 1.005091e-04
## 4680    Jeff Foust            acceptance    71 1573821 4.511314e-05
## 4681    Jeff Foust              additive    71 1573821 4.511314e-05
## 4682    Jeff Foust                  arms    71 1573821 4.511314e-05
## 4683    Jeff Foust             broadcast    71 1573821 4.511314e-05
## 4684    Jeff Foust                 clean    71 1573821 4.511314e-05
## 4685    Jeff Foust         commissioning    71 1573821 4.511314e-05
## 4686    Jeff Foust           complicated    71 1573821 4.511314e-05
## 4687    Jeff Foust            connection    71 1573821 4.511314e-05
## 4688    Jeff Foust              controls    71 1573821 4.511314e-05
## 4689    Jeff Foust               decline    71 1573821 4.511314e-05
## 4690    Jeff Foust              develops    71 1573821 4.511314e-05
## 4691    Jeff Foust            encouraged    71 1573821 4.511314e-05
## 4692    Jeff Foust                 grand    71 1573821 4.511314e-05
## 4693    Jeff Foust               hotfire    71 1573821 4.511314e-05
## 4694    Jeff Foust               impulse    71 1573821 4.511314e-05
## 4695    Jeff Foust                    ka    71 1573821 4.511314e-05
## 4696    Jeff Foust              limiting    71 1573821 4.511314e-05
## 4697    Jeff Foust                 lucas    71 1573821 4.511314e-05
## 4698    Jeff Foust            memorandum    71 1573821 4.511314e-05
## 4699    Jeff Foust            partnering    71 1573821 4.511314e-05
## 4700    Jeff Foust            prototypes    71 1573821 4.511314e-05
## 4701    Jeff Foust              referred    71 1573821 4.511314e-05
## 4702    Jeff Foust                  rush    71 1573821 4.511314e-05
## 4703    Jeff Foust                school    71 1573821 4.511314e-05
## 4704    Jeff Foust             sensitive    71 1573821 4.511314e-05
## 4705    Jeff Foust                  spot    71 1573821 4.511314e-05
## 4706    Jeff Foust                spread    71 1573821 4.511314e-05
## 4707    Jeff Foust               student    71 1573821 4.511314e-05
## 4708    Jeff Foust    telecommunications    71 1573821 4.511314e-05
## 4709    Jeff Foust                 tools    71 1573821 4.511314e-05
## 4710    Jeff Foust               typical    71 1573821 4.511314e-05
## 4711    Jeff Foust             vibration    71 1573821 4.511314e-05
## 4712    Jeff Foust                 worry    71 1573821 4.511314e-05
## 4713  Sandra Erwin              actively    71  716353 9.911315e-05
## 4714  Sandra Erwin                afwerx    71  716353 9.911315e-05
## 4715  Sandra Erwin             conflicts    71  716353 9.911315e-05
## 4716  Sandra Erwin               domains    71  716353 9.911315e-05
## 4717  Sandra Erwin               earth’s    71  716353 9.911315e-05
## 4718  Sandra Erwin                europe    71  716353 9.911315e-05
## 4719  Sandra Erwin               failure    71  716353 9.911315e-05
## 4720  Sandra Erwin               helping    71  716353 9.911315e-05
## 4721  Sandra Erwin               insight    71  716353 9.911315e-05
## 4722  Sandra Erwin             jablonsky    71  716353 9.911315e-05
## 4723  Sandra Erwin             situation    71  716353 9.911315e-05
## 4724  Sandra Erwin                 split    71  716353 9.911315e-05
## 4725  Sandra Erwin            supplement    71  716353 9.911315e-05
## 4726  Sandra Erwin                  todd    71  716353 9.911315e-05
## 4727    Jeff Foust               analyze    70 1573821 4.447774e-05
## 4728    Jeff Foust           assessments    70 1573821 4.447774e-05
## 4729    Jeff Foust                  ball    70 1573821 4.447774e-05
## 4730    Jeff Foust             coalition    70 1573821 4.447774e-05
## 4731    Jeff Foust                denver    70 1573821 4.447774e-05
## 4732    Jeff Foust           discoveries    70 1573821 4.447774e-05
## 4733    Jeff Foust                engage    70 1573821 4.447774e-05
## 4734    Jeff Foust              ferguson    70 1573821 4.447774e-05
## 4735    Jeff Foust                grants    70 1573821 4.447774e-05
## 4736    Jeff Foust              handling    70 1573821 4.447774e-05
## 4737    Jeff Foust                kourou    70 1573821 4.447774e-05
## 4738    Jeff Foust                 links    70 1573821 4.447774e-05
## 4739    Jeff Foust                 logan    70 1573821 4.447774e-05
## 4740    Jeff Foust                  lynx    70 1573821 4.447774e-05
## 4741    Jeff Foust              ministry    70 1573821 4.447774e-05
## 4742    Jeff Foust                neocam    70 1573821 4.447774e-05
## 4743    Jeff Foust                picked    70 1573821 4.447774e-05
## 4744    Jeff Foust               picture    70 1573821 4.447774e-05
## 4745    Jeff Foust                plenty    70 1573821 4.447774e-05
## 4746    Jeff Foust       reauthorization    70 1573821 4.447774e-05
## 4747    Jeff Foust                  reef    70 1573821 4.447774e-05
## 4748    Jeff Foust            rendezvous    70 1573821 4.447774e-05
## 4749    Jeff Foust             represent    70 1573821 4.447774e-05
## 4750    Jeff Foust                  rise    70 1573821 4.447774e-05
## 4751    Jeff Foust                 rocks    70 1573821 4.447774e-05
## 4752    Jeff Foust                  sail    70 1573821 4.447774e-05
## 4753    Jeff Foust               state’s    70 1573821 4.447774e-05
## 4754    Jeff Foust                 terra    70 1573821 4.447774e-05
## 4755    Jeff Foust                   ton    70 1573821 4.447774e-05
## 4756    Jeff Foust                   u.n    70 1573821 4.447774e-05
## 4757    Jeff Foust             undocking    70 1573821 4.447774e-05
## 4758    Jeff Foust                   van    70 1573821 4.447774e-05
## 4759  Sandra Erwin                  adds    70  716353 9.771719e-05
## 4760  Sandra Erwin               adviser    70  716353 9.771719e-05
## 4761  Sandra Erwin            atmosphere    70  716353 9.771719e-05
## 4762  Sandra Erwin           corporation    70  716353 9.771719e-05
## 4763  Sandra Erwin               cubesat    70  716353 9.771719e-05
## 4764  Sandra Erwin           integrating    70  716353 9.771719e-05
## 4765  Sandra Erwin            introduced    70  716353 9.771719e-05
## 4766  Sandra Erwin               removal    70  716353 9.771719e-05
## 4767  Sandra Erwin               updated    70  716353 9.771719e-05
## 4768    Jeff Foust       administrations    69 1573821 4.384234e-05
## 4769    Jeff Foust             alongside    69 1573821 4.384234e-05
## 4770    Jeff Foust                 blake    69 1573821 4.384234e-05
## 4771    Jeff Foust          breakthrough    69 1573821 4.384234e-05
## 4772    Jeff Foust                 buses    69 1573821 4.384234e-05
## 4773    Jeff Foust             cancelled    69 1573821 4.384234e-05
## 4774    Jeff Foust               cassini    69 1573821 4.384234e-05
## 4775    Jeff Foust             corrected    69 1573821 4.384234e-05
## 4776    Jeff Foust                   dod    69 1573821 4.384234e-05
## 4777    Jeff Foust                 doubt    69 1573821 4.384234e-05
## 4778    Jeff Foust              earliest    69 1573821 4.384234e-05
## 4779    Jeff Foust              globally    69 1573821 4.384234e-05
## 4780    Jeff Foust                harder    69 1573821 4.384234e-05
## 4781    Jeff Foust            impossible    69 1573821 4.384234e-05
## 4782    Jeff Foust           inspections    69 1573821 4.384234e-05
## 4783    Jeff Foust               japan’s    69 1573821 4.384234e-05
## 4784    Jeff Foust                 lamar    69 1573821 4.384234e-05
## 4785    Jeff Foust           manufacture    69 1573821 4.384234e-05
## 4786    Jeff Foust                modify    69 1573821 4.384234e-05
## 4787    Jeff Foust                 pause    69 1573821 4.384234e-05
## 4788    Jeff Foust               polaris    69 1573821 4.384234e-05
## 4789    Jeff Foust              postpone    69 1573821 4.384234e-05
## 4790    Jeff Foust                 quick    69 1573821 4.384234e-05
## 4791    Jeff Foust              scotland    69 1573821 4.384234e-05
## 4792    Jeff Foust              sounding    69 1573821 4.384234e-05
## 4793    Jeff Foust               space’s    69 1573821 4.384234e-05
## 4794    Jeff Foust                  stem    69 1573821 4.384234e-05
## 4795    Jeff Foust           streamlined    69 1573821 4.384234e-05
## 4796    Jeff Foust            subsystems    69 1573821 4.384234e-05
## 4797    Jeff Foust           technicians    69 1573821 4.384234e-05
## 4798    Jeff Foust             threshold    69 1573821 4.384234e-05
## 4799    Jeff Foust            unexpected    69 1573821 4.384234e-05
## 4800    Jeff Foust                valley    69 1573821 4.384234e-05
## 4801    Jeff Foust              verified    69 1573821 4.384234e-05
## 4802    Jeff Foust                 waves    69 1573821 4.384234e-05
## 4803    Jeff Foust               weren’t    69 1573821 4.384234e-05
## 4804  Sandra Erwin                    5g    69  716353 9.632123e-05
## 4805  Sandra Erwin                  ball    69  716353 9.632123e-05
## 4806  Sandra Erwin               capella    69  716353 9.632123e-05
## 4807  Sandra Erwin             civilians    69  716353 9.632123e-05
## 4808  Sandra Erwin              declined    69  716353 9.632123e-05
## 4809  Sandra Erwin              disclose    69  716353 9.632123e-05
## 4810  Sandra Erwin                duties    69  716353 9.632123e-05
## 4811  Sandra Erwin           electronics    69  716353 9.632123e-05
## 4812  Sandra Erwin              exchange    69  716353 9.632123e-05
## 4813  Sandra Erwin             expanding    69  716353 9.632123e-05
## 4814  Sandra Erwin                 folks    69  716353 9.632123e-05
## 4815  Sandra Erwin                    ig    69  716353 9.632123e-05
## 4816  Sandra Erwin              invasion    69  716353 9.632123e-05
## 4817  Sandra Erwin               iridium    69  716353 9.632123e-05
## 4818  Sandra Erwin                  i’ve    69  716353 9.632123e-05
## 4819  Sandra Erwin                  jobs    69  716353 9.632123e-05
## 4820  Sandra Erwin            journalist    69  716353 9.632123e-05
## 4821  Sandra Erwin                 let’s    69  716353 9.632123e-05
## 4822  Sandra Erwin           maintenance    69  716353 9.632123e-05
## 4823  Sandra Erwin         significantly    69  716353 9.632123e-05
## 4824  Sandra Erwin                  sort    69  716353 9.632123e-05
## 4825  Sandra Erwin               utility    69  716353 9.632123e-05
## 4826  Sandra Erwin                 vital    69  716353 9.632123e-05
## 4827    Jeff Foust           adjustments    68 1573821 4.320695e-05
## 4828    Jeff Foust                  aiaa    68 1573821 4.320695e-05
## 4829    Jeff Foust             anomalies    68 1573821 4.320695e-05
## 4830    Jeff Foust            appearance    68 1573821 4.320695e-05
## 4831    Jeff Foust                 atk’s    68 1573821 4.320695e-05
## 4832    Jeff Foust              canceled    68 1573821 4.320695e-05
## 4833    Jeff Foust             certainty    68 1573821 4.320695e-05
## 4834    Jeff Foust              chemical    68 1573821 4.320695e-05
## 4835    Jeff Foust          developments    68 1573821 4.320695e-05
## 4836    Jeff Foust                ebitda    68 1573821 4.320695e-05
## 4837    Jeff Foust              entities    68 1573821 4.320695e-05
## 4838    Jeff Foust            envisioned    68 1573821 4.320695e-05
## 4839    Jeff Foust             explorers    68 1573821 4.320695e-05
## 4840    Jeff Foust             exploring    68 1573821 4.320695e-05
## 4841    Jeff Foust                extent    68 1573821 4.320695e-05
## 4842    Jeff Foust                  gslv    68 1573821 4.320695e-05
## 4843    Jeff Foust                hitomi    68 1573821 4.320695e-05
## 4844    Jeff Foust              incoming    68 1573821 4.320695e-05
## 4845    Jeff Foust                laying    68 1573821 4.320695e-05
## 4846    Jeff Foust          manufactured    68 1573821 4.320695e-05
## 4847    Jeff Foust               precise    68 1573821 4.320695e-05
## 4848    Jeff Foust            prospector    68 1573821 4.320695e-05
## 4849    Jeff Foust              purposes    68 1573821 4.320695e-05
## 4850    Jeff Foust                shifts    68 1573821 4.320695e-05
## 4851    Jeff Foust            techniques    68 1573821 4.320695e-05
## 4852    Jeff Foust            television    68 1573821 4.320695e-05
## 4853    Jeff Foust                 vital    68 1573821 4.320695e-05
## 4854    Jeff Foust                writes    68 1573821 4.320695e-05
## 4855  Sandra Erwin              accounts    68  716353 9.492527e-05
## 4856  Sandra Erwin            aggressive    68  716353 9.492527e-05
## 4857  Sandra Erwin           anticipated    68  716353 9.492527e-05
## 4858  Sandra Erwin                bigger    68  716353 9.492527e-05
## 4859  Sandra Erwin                column    68  716353 9.492527e-05
## 4860  Sandra Erwin             criticism    68  716353 9.492527e-05
## 4861  Sandra Erwin                extend    68  716353 9.492527e-05
## 4862  Sandra Erwin                  fair    68  716353 9.492527e-05
## 4863  Sandra Erwin                  gaps    68  716353 9.492527e-05
## 4864  Sandra Erwin                  hand    68  716353 9.492527e-05
## 4865  Sandra Erwin                harder    68  716353 9.492527e-05
## 4866  Sandra Erwin              kirtland    68  716353 9.492527e-05
## 4867  Sandra Erwin                 korea    68  716353 9.492527e-05
## 4868  Sandra Erwin             mentioned    68  716353 9.492527e-05
## 4869  Sandra Erwin                 nro’s    68  716353 9.492527e-05
## 4870  Sandra Erwin           regulations    68  716353 9.492527e-05
## 4871  Sandra Erwin                sandra    68  716353 9.492527e-05
## 4872  Sandra Erwin               they’ve    68  716353 9.492527e-05
## 4873  Sandra Erwin                 topic    68  716353 9.492527e-05
## 4874  Sandra Erwin                 watch    68  716353 9.492527e-05
## 4875    Jeff Foust                  adds    67 1573821 4.257155e-05
## 4876    Jeff Foust              anderson    67 1573821 4.257155e-05
## 4877    Jeff Foust              appendix    67 1573821 4.257155e-05
## 4878    Jeff Foust          astrobiology    67 1573821 4.257155e-05
## 4879    Jeff Foust              awaiting    67 1573821 4.257155e-05
## 4880    Jeff Foust                clouds    67 1573821 4.257155e-05
## 4881    Jeff Foust           comfortable    67 1573821 4.257155e-05
## 4882    Jeff Foust               consent    67 1573821 4.257155e-05
## 4883    Jeff Foust           cooperative    67 1573821 4.257155e-05
## 4884    Jeff Foust                cruces    67 1573821 4.257155e-05
## 4885    Jeff Foust               culture    67 1573821 4.257155e-05
## 4886    Jeff Foust                   dsn    67 1573821 4.257155e-05
## 4887    Jeff Foust              europe’s    67 1573821 4.257155e-05
## 4888    Jeff Foust                  food    67 1573821 4.257155e-05
## 4889    Jeff Foust               frankly    67 1573821 4.257155e-05
## 4890    Jeff Foust           fundraising    67 1573821 4.257155e-05
## 4891    Jeff Foust              grounded    67 1573821 4.257155e-05
## 4892    Jeff Foust                 grown    67 1573821 4.257155e-05
## 4893    Jeff Foust             guarantee    67 1573821 4.257155e-05
## 4894    Jeff Foust                 hands    67 1573821 4.257155e-05
## 4895    Jeff Foust                 italy    67 1573821 4.257155e-05
## 4896    Jeff Foust             jupiter’s    67 1573821 4.257155e-05
## 4897    Jeff Foust                manner    67 1573821 4.257155e-05
## 4898    Jeff Foust                moon’s    67 1573821 4.257155e-05
## 4899    Jeff Foust               periods    67 1573821 4.257155e-05
## 4900    Jeff Foust            personally    67 1573821 4.257155e-05
## 4901    Jeff Foust           positioning    67 1573821 4.257155e-05
## 4902    Jeff Foust              preserve    67 1573821 4.257155e-05
## 4903    Jeff Foust              relevant    67 1573821 4.257155e-05
## 4904    Jeff Foust            requesting    67 1573821 4.257155e-05
## 4905    Jeff Foust                splash    67 1573821 4.257155e-05
## 4906    Jeff Foust                 tough    67 1573821 4.257155e-05
## 4907    Jeff Foust                 train    67 1573821 4.257155e-05
## 4908    Jeff Foust              ultimate    67 1573821 4.257155e-05
## 4909    Jeff Foust              watching    67 1573821 4.257155e-05
## 4910  Sandra Erwin             collision    67  716353 9.352931e-05
## 4911  Sandra Erwin             connected    67  716353 9.352931e-05
## 4912  Sandra Erwin             efficient    67  716353 9.352931e-05
## 4913  Sandra Erwin              enhanced    67  716353 9.352931e-05
## 4914  Sandra Erwin                 erwin    67  716353 9.352931e-05
## 4915  Sandra Erwin                   ews    67  716353 9.352931e-05
## 4916  Sandra Erwin                  fred    67  716353 9.352931e-05
## 4917  Sandra Erwin             increases    67  716353 9.352931e-05
## 4918  Sandra Erwin           manufacture    67  716353 9.352931e-05
## 4919  Sandra Erwin              meetings    67  716353 9.352931e-05
## 4920  Sandra Erwin             nominated    67  716353 9.352931e-05
## 4921  Sandra Erwin              reviewed    67  716353 9.352931e-05
## 4922  Sandra Erwin                   rfi    67  716353 9.352931e-05
## 4923  Sandra Erwin                robust    67  716353 9.352931e-05
## 4924  Sandra Erwin                  runs    67  716353 9.352931e-05
## 4925  Sandra Erwin                simply    67  716353 9.352931e-05
## 4926  Sandra Erwin               surface    67  716353 9.352931e-05
## 4927  Sandra Erwin            techniques    67  716353 9.352931e-05
## 4928  Sandra Erwin            telescopes    67  716353 9.352931e-05
## 4929  Sandra Erwin                  tory    67  716353 9.352931e-05
## 4930  Sandra Erwin                viewed    67  716353 9.352931e-05
## 4931  Sandra Erwin               worries    67  716353 9.352931e-05
## 4932    Jeff Foust                    5g    66 1573821 4.193615e-05
## 4933    Jeff Foust              analyses    66 1573821 4.193615e-05
## 4934    Jeff Foust               astra’s    66 1573821 4.193615e-05
## 4935    Jeff Foust                 astro    66 1573821 4.193615e-05
## 4936    Jeff Foust                chairs    66 1573821 4.193615e-05
## 4937    Jeff Foust         complementary    66 1573821 4.193615e-05
## 4938    Jeff Foust           composition    66 1573821 4.193615e-05
## 4939    Jeff Foust             conflicts    66 1573821 4.193615e-05
## 4940    Jeff Foust               demands    66 1573821 4.193615e-05
## 4941    Jeff Foust             designing    66 1573821 4.193615e-05
## 4942    Jeff Foust                domain    66 1573821 4.193615e-05
## 4943    Jeff Foust           encouraging    66 1573821 4.193615e-05
## 4944    Jeff Foust           endorsement    66 1573821 4.193615e-05
## 4945    Jeff Foust             fantastic    66 1573821 4.193615e-05
## 4946    Jeff Foust               feeling    66 1573821 4.193615e-05
## 4947    Jeff Foust                fields    66 1573821 4.193615e-05
## 4948    Jeff Foust                   htv    66 1573821 4.193615e-05
## 4949    Jeff Foust           improvement    66 1573821 4.193615e-05
## 4950    Jeff Foust              insights    66 1573821 4.193615e-05
## 4951    Jeff Foust            kazakhstan    66 1573821 4.193615e-05
## 4952    Jeff Foust                 kevin    66 1573821 4.193615e-05
## 4953    Jeff Foust                legacy    66 1573821 4.193615e-05
## 4954    Jeff Foust               mapping    66 1573821 4.193615e-05
## 4955    Jeff Foust             measuring    66 1573821 4.193615e-05
## 4956    Jeff Foust                nasdaq    66 1573821 4.193615e-05
## 4957    Jeff Foust                    oa    66 1573821 4.193615e-05
## 4958    Jeff Foust              overcome    66 1573821 4.193615e-05
## 4959    Jeff Foust                powers    66 1573821 4.193615e-05
## 4960    Jeff Foust               realize    66 1573821 4.193615e-05
## 4961    Jeff Foust              regolith    66 1573821 4.193615e-05
## 4962    Jeff Foust              removing    66 1573821 4.193615e-05
## 4963    Jeff Foust               respect    66 1573821 4.193615e-05
## 4964    Jeff Foust              senate’s    66 1573821 4.193615e-05
## 4965    Jeff Foust                 ships    66 1573821 4.193615e-05
## 4966    Jeff Foust               stephen    66 1573821 4.193615e-05
## 4967    Jeff Foust            structural    66 1573821 4.193615e-05
## 4968    Jeff Foust                 suite    66 1573821 4.193615e-05
## 4969    Jeff Foust              thrilled    66 1573821 4.193615e-05
## 4970    Jeff Foust              tropical    66 1573821 4.193615e-05
## 4971    Jeff Foust           ultraviolet    66 1573821 4.193615e-05
## 4972  Sandra Erwin                 aging    66  716353 9.213335e-05
## 4973  Sandra Erwin              altitude    66  716353 9.213335e-05
## 4974  Sandra Erwin              audience    66  716353 9.213335e-05
## 4975  Sandra Erwin                 aware    66  716353 9.213335e-05
## 4976  Sandra Erwin               brought    66  716353 9.213335e-05
## 4977  Sandra Erwin           combination    66  716353 9.213335e-05
## 4978  Sandra Erwin           complicated    66  716353 9.213335e-05
## 4979  Sandra Erwin             ecosystem    66  716353 9.213335e-05
## 4980  Sandra Erwin              features    66  716353 9.213335e-05
## 4981  Sandra Erwin            indefinite    66  716353 9.213335e-05
## 4982  Sandra Erwin            nomination    66  716353 9.213335e-05
## 4983  Sandra Erwin              origin’s    66  716353 9.213335e-05
## 4984  Sandra Erwin                  paid    66  716353 9.213335e-05
## 4985  Sandra Erwin             precision    66  716353 9.213335e-05
## 4986  Sandra Erwin                 selva    66  716353 9.213335e-05
## 4987  Sandra Erwin              vulcan’s    66  716353 9.213335e-05
## 4988  Sandra Erwin                  wash    66  716353 9.213335e-05
## 4989    Jeff Foust              accounts    65 1573821 4.130076e-05
## 4990    Jeff Foust              advocacy    65 1573821 4.130076e-05
## 4991    Jeff Foust              airborne    65 1573821 4.130076e-05
## 4992    Jeff Foust              awarding    65 1573821 4.130076e-05
## 4993    Jeff Foust          characterize    65 1573821 4.130076e-05
## 4994    Jeff Foust         controversial    65 1573821 4.130076e-05
## 4995    Jeff Foust              covering    65 1573821 4.130076e-05
## 4996    Jeff Foust              disposal    65 1573821 4.130076e-05
## 4997    Jeff Foust             downrange    65 1573821 4.130076e-05
## 4998    Jeff Foust               evening    65 1573821 4.130076e-05
## 4999    Jeff Foust               expense    65 1573821 4.130076e-05
## 5000    Jeff Foust                expire    65 1573821 4.130076e-05
## 5001    Jeff Foust           frequencies    65 1573821 4.130076e-05
## 5002    Jeff Foust                   h.r    65 1573821 4.130076e-05
## 5003    Jeff Foust         incorporating    65 1573821 4.130076e-05
## 5004    Jeff Foust                  joel    65 1573821 4.130076e-05
## 5005    Jeff Foust                  josh    65 1573821 4.130076e-05
## 5006    Jeff Foust              kerosene    65 1573821 4.130076e-05
## 5007    Jeff Foust                    ku    65 1573821 4.130076e-05
## 5008    Jeff Foust                length    65 1573821 4.130076e-05
## 5009    Jeff Foust               minimal    65 1573821 4.130076e-05
## 5010    Jeff Foust             outlining    65 1573821 4.130076e-05
## 5011    Jeff Foust             partially    65 1573821 4.130076e-05
## 5012    Jeff Foust                planes    65 1573821 4.130076e-05
## 5013    Jeff Foust                 poles    65 1573821 4.130076e-05
## 5014    Jeff Foust           prematurely    65 1573821 4.130076e-05
## 5015    Jeff Foust             program’s    65 1573821 4.130076e-05
## 5016    Jeff Foust           prospective    65 1573821 4.130076e-05
## 5017    Jeff Foust            purchasing    65 1573821 4.130076e-05
## 5018    Jeff Foust               reenter    65 1573821 4.130076e-05
## 5019    Jeff Foust               reuters    65 1573821 4.130076e-05
## 5020    Jeff Foust               seventh    65 1573821 4.130076e-05
## 5021    Jeff Foust                   slc    65 1573821 4.130076e-05
## 5022    Jeff Foust                slowed    65 1573821 4.130076e-05
## 5023    Jeff Foust              stronger    65 1573821 4.130076e-05
## 5024    Jeff Foust            surprising    65 1573821 4.130076e-05
## 5025    Jeff Foust                tended    65 1573821 4.130076e-05
## 5026    Jeff Foust         unprecedented    65 1573821 4.130076e-05
## 5027  Sandra Erwin                   37b    65  716353 9.073739e-05
## 5028  Sandra Erwin                  45th    65  716353 9.073739e-05
## 5029  Sandra Erwin                affect    65  716353 9.073739e-05
## 5030  Sandra Erwin                 cover    65  716353 9.073739e-05
## 5031  Sandra Erwin                editor    65  716353 9.073739e-05
## 5032  Sandra Erwin                  fire    65  716353 9.073739e-05
## 5033  Sandra Erwin             interface    65  716353 9.073739e-05
## 5034  Sandra Erwin                 items    65  716353 9.073739e-05
## 5035  Sandra Erwin                joined    65  716353 9.073739e-05
## 5036  Sandra Erwin                looked    65  716353 9.073739e-05
## 5037  Sandra Erwin              mandated    65  716353 9.073739e-05
## 5038  Sandra Erwin           recommended    65  716353 9.073739e-05
## 5039  Sandra Erwin                relies    65  716353 9.073739e-05
## 5040  Sandra Erwin             remaining    65  716353 9.073739e-05
## 5041  Sandra Erwin                return    65  716353 9.073739e-05
## 5042  Sandra Erwin                titled    65  716353 9.073739e-05
## 5043  Sandra Erwin               upgrade    65  716353 9.073739e-05
## 5044  Sandra Erwin                   vox    65  716353 9.073739e-05
## 5045  Sandra Erwin              watching    65  716353 9.073739e-05
## 5046    Jeff Foust               adopted    64 1573821 4.066536e-05
## 5047    Jeff Foust             bandwidth    64 1573821 4.066536e-05
## 5048    Jeff Foust          collectspace    64 1573821 4.066536e-05
## 5049    Jeff Foust             convinced    64 1573821 4.066536e-05
## 5050    Jeff Foust                crisis    64 1573821 4.066536e-05
## 5051    Jeff Foust                   dlr    64 1573821 4.066536e-05
## 5052    Jeff Foust               engaged    64 1573821 4.066536e-05
## 5053    Jeff Foust                  exos    64 1573821 4.066536e-05
## 5054    Jeff Foust                faulty    64 1573821 4.066536e-05
## 5055    Jeff Foust                fellow    64 1573821 4.066536e-05
## 5056    Jeff Foust         headquartered    64 1573821 4.066536e-05
## 5057    Jeff Foust                 layer    64 1573821 4.066536e-05
## 5058    Jeff Foust                 let’s    64 1573821 4.066536e-05
## 5059    Jeff Foust                  mach    64 1573821 4.066536e-05
## 5060    Jeff Foust              magnetic    64 1573821 4.066536e-05
## 5061    Jeff Foust         massachusetts    64 1573821 4.066536e-05
## 5062    Jeff Foust                   max    64 1573821 4.066536e-05
## 5063    Jeff Foust           nominations    64 1573821 4.066536e-05
## 5064    Jeff Foust                 occur    64 1573821 4.066536e-05
## 5065    Jeff Foust               payment    64 1573821 4.066536e-05
## 5066    Jeff Foust            permission    64 1573821 4.066536e-05
## 5067    Jeff Foust              proposes    64 1573821 4.066536e-05
## 5068    Jeff Foust           publication    64 1573821 4.066536e-05
## 5069    Jeff Foust             realistic    64 1573821 4.066536e-05
## 5070    Jeff Foust             reentries    64 1573821 4.066536e-05
## 5071    Jeff Foust               revisit    64 1573821 4.066536e-05
## 5072    Jeff Foust               sanders    64 1573821 4.066536e-05
## 5073    Jeff Foust                 solve    64 1573821 4.066536e-05
## 5074    Jeff Foust                soviet    64 1573821 4.066536e-05
## 5075    Jeff Foust             struggled    64 1573821 4.066536e-05
## 5076    Jeff Foust            supportive    64 1573821 4.066536e-05
## 5077    Jeff Foust           surrounding    64 1573821 4.066536e-05
## 5078    Jeff Foust           telescope’s    64 1573821 4.066536e-05
## 5079    Jeff Foust                values    64 1573821 4.066536e-05
## 5080    Jeff Foust               village    64 1573821 4.066536e-05
## 5081  Sandra Erwin             advancing    64  716353 8.934143e-05
## 5082  Sandra Erwin               affairs    64  716353 8.934143e-05
## 5083  Sandra Erwin              allowing    64  716353 8.934143e-05
## 5084  Sandra Erwin            authorized    64  716353 8.934143e-05
## 5085  Sandra Erwin              carrying    64  716353 8.934143e-05
## 5086  Sandra Erwin            consulting    64  716353 8.934143e-05
## 5087  Sandra Erwin           cooperative    64  716353 8.934143e-05
## 5088  Sandra Erwin               element    64  716353 8.934143e-05
## 5089  Sandra Erwin                fields    64  716353 8.934143e-05
## 5090  Sandra Erwin               flights    64  716353 8.934143e-05
## 5091  Sandra Erwin               freedom    64  716353 8.934143e-05
## 5092  Sandra Erwin           initiatives    64  716353 8.934143e-05
## 5093  Sandra Erwin                inside    64  716353 8.934143e-05
## 5094  Sandra Erwin              manifest    64  716353 8.934143e-05
## 5095  Sandra Erwin                  nato    64  716353 8.934143e-05
## 5096  Sandra Erwin            strategies    64  716353 8.934143e-05
## 5097  Sandra Erwin               waiting    64  716353 8.934143e-05
## 5098  Sandra Erwin               zealand    64  716353 8.934143e-05
## 5099    Jeff Foust                   39b    63 1573821 4.002997e-05
## 5100    Jeff Foust           acknowledge    63 1573821 4.002997e-05
## 5101    Jeff Foust              advances    63 1573821 4.002997e-05
## 5102    Jeff Foust                  anti    63 1573821 4.002997e-05
## 5103    Jeff Foust              cantwell    63 1573821 4.002997e-05
## 5104    Jeff Foust             carefully    63 1573821 4.002997e-05
## 5105    Jeff Foust            compliance    63 1573821 4.002997e-05
## 5106    Jeff Foust         conversations    63 1573821 4.002997e-05
## 5107    Jeff Foust               coolant    63 1573821 4.002997e-05
## 5108    Jeff Foust                define    63 1573821 4.002997e-05
## 5109    Jeff Foust             detection    63 1573821 4.002997e-05
## 5110    Jeff Foust            equivalent    63 1573821 4.002997e-05
## 5111    Jeff Foust             favorably    63 1573821 4.002997e-05
## 5112    Jeff Foust            geospatial    63 1573821 4.002997e-05
## 5113    Jeff Foust                  gulf    63 1573821 4.002997e-05
## 5114    Jeff Foust                  halt    63 1573821 4.002997e-05
## 5115    Jeff Foust               handles    63 1573821 4.002997e-05
## 5116    Jeff Foust                  lots    63 1573821 4.002997e-05
## 5117    Jeff Foust            manifested    63 1573821 4.002997e-05
## 5118    Jeff Foust                 merge    63 1573821 4.002997e-05
## 5119    Jeff Foust                narrow    63 1573821 4.002997e-05
## 5120    Jeff Foust                  ohio    63 1573821 4.002997e-05
## 5121    Jeff Foust               orleans    63 1573821 4.002997e-05
## 5122    Jeff Foust                 prove    63 1573821 4.002997e-05
## 5123    Jeff Foust            roundtable    63 1573821 4.002997e-05
## 5124    Jeff Foust               setback    63 1573821 4.002997e-05
## 5125    Jeff Foust                  soft    63 1573821 4.002997e-05
## 5126    Jeff Foust               spitzer    63 1573821 4.002997e-05
## 5127    Jeff Foust               tanking    63 1573821 4.002997e-05
## 5128    Jeff Foust             timetable    63 1573821 4.002997e-05
## 5129    Jeff Foust                 trust    63 1573821 4.002997e-05
## 5130    Jeff Foust               undergo    63 1573821 4.002997e-05
## 5131    Jeff Foust               visited    63 1573821 4.002997e-05
## 5132  Sandra Erwin               applied    63  716353 8.794547e-05
## 5133  Sandra Erwin               catalog    63  716353 8.794547e-05
## 5134  Sandra Erwin              center’s    63  716353 8.794547e-05
## 5135  Sandra Erwin            confidence    63  716353 8.794547e-05
## 5136  Sandra Erwin                   d.c    63  716353 8.794547e-05
## 5137  Sandra Erwin             education    63  716353 8.794547e-05
## 5138  Sandra Erwin             implement    63  716353 8.794547e-05
## 5139  Sandra Erwin                  lost    63  716353 8.794547e-05
## 5140  Sandra Erwin             nonprofit    63  716353 8.794547e-05
## 5141  Sandra Erwin                 ocean    63  716353 8.794547e-05
## 5142  Sandra Erwin              possibly    63  716353 8.794547e-05
## 5143  Sandra Erwin         proliferation    63  716353 8.794547e-05
## 5144  Sandra Erwin                 rates    63  716353 8.794547e-05
## 5145  Sandra Erwin               reduced    63  716353 8.794547e-05
## 5146  Sandra Erwin               revenue    63  716353 8.794547e-05
## 5147  Sandra Erwin                  rsgs    63  716353 8.794547e-05
## 5148  Sandra Erwin                secret    63  716353 8.794547e-05
## 5149  Sandra Erwin               tierney    63  716353 8.794547e-05
## 5150  Sandra Erwin              unveiled    63  716353 8.794547e-05
## 5151    Jeff Foust               bernice    62 1573821 3.939457e-05
## 5152    Jeff Foust                cabana    62 1573821 3.939457e-05
## 5153    Jeff Foust               charges    62 1573821 3.939457e-05
## 5154    Jeff Foust            compelling    62 1573821 3.939457e-05
## 5155    Jeff Foust              competed    62 1573821 3.939457e-05
## 5156    Jeff Foust            competitor    62 1573821 3.939457e-05
## 5157    Jeff Foust         contamination    62 1573821 3.939457e-05
## 5158    Jeff Foust                denied    62 1573821 3.939457e-05
## 5159    Jeff Foust               display    62 1573821 3.939457e-05
## 5160    Jeff Foust                 eddie    62 1573821 3.939457e-05
## 5161    Jeff Foust               falling    62 1573821 3.939457e-05
## 5162    Jeff Foust               figures    62 1573821 3.939457e-05
## 5163    Jeff Foust                hangar    62 1573821 3.939457e-05
## 5164    Jeff Foust             hawthorne    62 1573821 3.939457e-05
## 5165    Jeff Foust             integrate    62 1573821 3.939457e-05
## 5166    Jeff Foust                  i’ll    62 1573821 3.939457e-05
## 5167    Jeff Foust                killed    62 1573821 3.939457e-05
## 5168    Jeff Foust                 labor    62 1573821 3.939457e-05
## 5169    Jeff Foust                  laws    62 1573821 3.939457e-05
## 5170    Jeff Foust           marketplace    62 1573821 3.939457e-05
## 5171    Jeff Foust                 owner    62 1573821 3.939457e-05
## 5172    Jeff Foust                  phil    62 1573821 3.939457e-05
## 5173    Jeff Foust                   rob    62 1573821 3.939457e-05
## 5174    Jeff Foust               rolling    62 1573821 3.939457e-05
## 5175    Jeff Foust                 timer    62 1573821 3.939457e-05
## 5176    Jeff Foust                  todd    62 1573821 3.939457e-05
## 5177    Jeff Foust              tomorrow    62 1573821 3.939457e-05
## 5178    Jeff Foust                 weigh    62 1573821 3.939457e-05
## 5179  Sandra Erwin               academy    62  716353 8.654951e-05
## 5180  Sandra Erwin               briefed    62  716353 8.654951e-05
## 5181  Sandra Erwin          construction    62  716353 8.654951e-05
## 5182  Sandra Erwin                  csis    62  716353 8.654951e-05
## 5183  Sandra Erwin             democrats    62  716353 8.654951e-05
## 5184  Sandra Erwin            determined    62  716353 8.654951e-05
## 5185  Sandra Erwin            disruptive    62  716353 8.654951e-05
## 5186  Sandra Erwin               donovan    62  716353 8.654951e-05
## 5187  Sandra Erwin                engage    62  716353 8.654951e-05
## 5188  Sandra Erwin            frequently    62  716353 8.654951e-05
## 5189  Sandra Erwin              happened    62  716353 8.654951e-05
## 5190  Sandra Erwin              inmarsat    62  716353 8.654951e-05
## 5191  Sandra Erwin                liquid    62  716353 8.654951e-05
## 5192  Sandra Erwin             proximity    62  716353 8.654951e-05
## 5193  Sandra Erwin              relevant    62  716353 8.654951e-05
## 5194  Sandra Erwin                spread    62  716353 8.654951e-05
## 5195  Sandra Erwin                talent    62  716353 8.654951e-05
## 5196  Sandra Erwin                 trust    62  716353 8.654951e-05
## 5197  Sandra Erwin              valuable    62  716353 8.654951e-05
## 5198  Sandra Erwin                  wait    62  716353 8.654951e-05
## 5199    Jeff Foust                 1960s    61 1573821 3.875917e-05
## 5200    Jeff Foust            accessible    61 1573821 3.875917e-05
## 5201    Jeff Foust                    ao    61 1573821 3.875917e-05
## 5202    Jeff Foust            attractive    61 1573821 3.875917e-05
## 5203    Jeff Foust                  blog    61 1573821 3.875917e-05
## 5204    Jeff Foust                choose    61 1573821 3.875917e-05
## 5205    Jeff Foust           consecutive    61 1573821 3.875917e-05
## 5206    Jeff Foust               dispute    61 1573821 3.875917e-05
## 5207    Jeff Foust                doubts    61 1573821 3.875917e-05
## 5208    Jeff Foust             hazardous    61 1573821 3.875917e-05
## 5209    Jeff Foust                  icps    61 1573821 3.875917e-05
## 5210    Jeff Foust         investigators    61 1573821 3.875917e-05
## 5211    Jeff Foust                 loads    61 1573821 3.875917e-05
## 5212    Jeff Foust             microwave    61 1573821 3.875917e-05
## 5213    Jeff Foust                 miles    61 1573821 3.875917e-05
## 5214    Jeff Foust              oneweb’s    61 1573821 3.875917e-05
## 5215    Jeff Foust                praise    61 1573821 3.875917e-05
## 5216    Jeff Foust             precision    61 1573821 3.875917e-05
## 5217    Jeff Foust              pressing    61 1573821 3.875917e-05
## 5218    Jeff Foust                prizes    61 1573821 3.875917e-05
## 5219    Jeff Foust          programmatic    61 1573821 3.875917e-05
## 5220    Jeff Foust               renewed    61 1573821 3.875917e-05
## 5221    Jeff Foust          representing    61 1573821 3.875917e-05
## 5222    Jeff Foust              reserved    61 1573821 3.875917e-05
## 5223    Jeff Foust                slowly    61 1573821 3.875917e-05
## 5224    Jeff Foust             southwest    61 1573821 3.875917e-05
## 5225    Jeff Foust                street    61 1573821 3.875917e-05
## 5226    Jeff Foust             terminate    61 1573821 3.875917e-05
## 5227    Jeff Foust                 tesla    61 1573821 3.875917e-05
## 5228    Jeff Foust            threatened    61 1573821 3.875917e-05
## 5229    Jeff Foust           trailblazer    61 1573821 3.875917e-05
## 5230    Jeff Foust             traveling    61 1573821 3.875917e-05
## 5231    Jeff Foust              trillion    61 1573821 3.875917e-05
## 5232    Jeff Foust               weapons    61 1573821 3.875917e-05
## 5233    Jeff Foust                you’ll    61 1573821 3.875917e-05
## 5234  Sandra Erwin             america’s    61  716353 8.515355e-05
## 5235  Sandra Erwin            attractive    61  716353 8.515355e-05
## 5236  Sandra Erwin                  cold    61  716353 8.515355e-05
## 5237  Sandra Erwin            commitment    61  716353 8.515355e-05
## 5238  Sandra Erwin                  cuts    61  716353 8.515355e-05
## 5239  Sandra Erwin            disruption    61  716353 8.515355e-05
## 5240  Sandra Erwin                    el    61  716353 8.515355e-05
## 5241  Sandra Erwin                failed    61  716353 8.515355e-05
## 5242  Sandra Erwin                 forge    61  716353 8.515355e-05
## 5243  Sandra Erwin                  hour    61  716353 8.515355e-05
## 5244  Sandra Erwin                 isn’t    61  716353 8.515355e-05
## 5245  Sandra Erwin           marketplace    61  716353 8.515355e-05
## 5246  Sandra Erwin            overseeing    61  716353 8.515355e-05
## 5247  Sandra Erwin                 prove    61  716353 8.515355e-05
## 5248  Sandra Erwin               reached    61  716353 8.515355e-05
## 5249  Sandra Erwin              reliance    61  716353 8.515355e-05
## 5250  Sandra Erwin               setting    61  716353 8.515355e-05
## 5251  Sandra Erwin               standup    61  716353 8.515355e-05
## 5252  Sandra Erwin                  tank    61  716353 8.515355e-05
## 5253    Jeff Foust          accomplished    60 1573821 3.812378e-05
## 5254    Jeff Foust              apparent    60 1573821 3.812378e-05
## 5255    Jeff Foust                belief    60 1573821 3.812378e-05
## 5256    Jeff Foust               bidders    60 1573821 3.812378e-05
## 5257    Jeff Foust                   caa    60 1573821 3.812378e-05
## 5258    Jeff Foust          conservative    60 1573821 3.812378e-05
## 5259    Jeff Foust              democrat    60 1573821 3.812378e-05
## 5260    Jeff Foust             evolution    60 1573821 3.812378e-05
## 5261    Jeff Foust                   fox    60 1573821 3.812378e-05
## 5262    Jeff Foust             geooptics    60 1573821 3.812378e-05
## 5263    Jeff Foust                hazard    60 1573821 3.812378e-05
## 5264    Jeff Foust                jwst’s    60 1573821 3.812378e-05
## 5265    Jeff Foust                   kdp    60 1573821 3.812378e-05
## 5266    Jeff Foust                leaves    60 1573821 3.812378e-05
## 5267    Jeff Foust                losses    60 1573821 3.812378e-05
## 5268    Jeff Foust           malfunction    60 1573821 3.812378e-05
## 5269    Jeff Foust               midland    60 1573821 3.812378e-05
## 5270    Jeff Foust                miller    60 1573821 3.812378e-05
## 5271    Jeff Foust              mountain    60 1573821 3.812378e-05
## 5272    Jeff Foust                parent    60 1573821 3.812378e-05
## 5273    Jeff Foust              peaceful    60 1573821 3.812378e-05
## 5274    Jeff Foust                 phone    60 1573821 3.812378e-05
## 5275    Jeff Foust           proprietary    60 1573821 3.812378e-05
## 5276    Jeff Foust              regulate    60 1573821 3.812378e-05
## 5277    Jeff Foust                  reps    60 1573821 3.812378e-05
## 5278    Jeff Foust               resumed    60 1573821 3.812378e-05
## 5279    Jeff Foust                reuter    60 1573821 3.812378e-05
## 5280    Jeff Foust              sampling    60 1573821 3.812378e-05
## 5281    Jeff Foust              scrutiny    60 1573821 3.812378e-05
## 5282    Jeff Foust                sergey    60 1573821 3.812378e-05
## 5283    Jeff Foust               shannon    60 1573821 3.812378e-05
## 5284    Jeff Foust               sharply    60 1573821 3.812378e-05
## 5285    Jeff Foust           spokeswoman    60 1573821 3.812378e-05
## 5286    Jeff Foust               stepped    60 1573821 3.812378e-05
## 5287    Jeff Foust           temporarily    60 1573821 3.812378e-05
## 5288    Jeff Foust             terminals    60 1573821 3.812378e-05
## 5289    Jeff Foust             timelines    60 1573821 3.812378e-05
## 5290    Jeff Foust          verification    60 1573821 3.812378e-05
## 5291  Sandra Erwin              airborne    60  716353 8.375759e-05
## 5292  Sandra Erwin                brings    60  716353 8.375759e-05
## 5293  Sandra Erwin              category    60  716353 8.375759e-05
## 5294  Sandra Erwin                 chris    60  716353 8.375759e-05
## 5295  Sandra Erwin                 cycle    60  716353 8.375759e-05
## 5296  Sandra Erwin                   fab    60  716353 8.375759e-05
## 5297  Sandra Erwin              generate    60  716353 8.375759e-05
## 5298  Sandra Erwin                hoping    60  716353 8.375759e-05
## 5299  Sandra Erwin                 japan    60  716353 8.375759e-05
## 5300  Sandra Erwin           maintaining    60  716353 8.375759e-05
## 5301  Sandra Erwin              mobility    60  716353 8.375759e-05
## 5302  Sandra Erwin               natural    60  716353 8.375759e-05
## 5303  Sandra Erwin           preparation    60  716353 8.375759e-05
## 5304  Sandra Erwin             qualified    60  716353 8.375759e-05
## 5305  Sandra Erwin          relationship    60  716353 8.375759e-05
## 5306  Sandra Erwin            shanahan’s    60  716353 8.375759e-05
## 5307  Sandra Erwin              starship    60  716353 8.375759e-05
## 5308  Sandra Erwin                thrust    60  716353 8.375759e-05
## 5309  Sandra Erwin             worldview    60  716353 8.375759e-05
## 5310    Jeff Foust            accounting    59 1573821 3.748838e-05
## 5311    Jeff Foust               aligned    59 1573821 3.748838e-05
## 5312    Jeff Foust            amendments    59 1573821 3.748838e-05
## 5313    Jeff Foust             analytics    59 1573821 3.748838e-05
## 5314    Jeff Foust             armstrong    59 1573821 3.748838e-05
## 5315    Jeff Foust               capitol    59 1573821 3.748838e-05
## 5316    Jeff Foust         circumstances    59 1573821 3.748838e-05
## 5317    Jeff Foust               college    59 1573821 3.748838e-05
## 5318    Jeff Foust              defended    59 1573821 3.748838e-05
## 5319    Jeff Foust             directing    59 1573821 3.748838e-05
## 5320    Jeff Foust              echostar    59 1573821 3.748838e-05
## 5321    Jeff Foust               expires    59 1573821 3.748838e-05
## 5322    Jeff Foust           explanation    59 1573821 3.748838e-05
## 5323    Jeff Foust              finalize    59 1573821 3.748838e-05
## 5324    Jeff Foust                  fits    59 1573821 3.748838e-05
## 5325    Jeff Foust               granted    59 1573821 3.748838e-05
## 5326    Jeff Foust                  gyro    59 1573821 3.748838e-05
## 5327    Jeff Foust             influence    59 1573821 3.748838e-05
## 5328    Jeff Foust                inform    59 1573821 3.748838e-05
## 5329    Jeff Foust           maneuvering    59 1573821 3.748838e-05
## 5330    Jeff Foust                newman    59 1573821 3.748838e-05
## 5331    Jeff Foust               nominee    59 1573821 3.748838e-05
## 5332    Jeff Foust               oversee    59 1573821 3.748838e-05
## 5333    Jeff Foust         presentations    59 1573821 3.748838e-05
## 5334    Jeff Foust               promise    59 1573821 3.748838e-05
## 5335    Jeff Foust             promising    59 1573821 3.748838e-05
## 5336    Jeff Foust                proper    59 1573821 3.748838e-05
## 5337    Jeff Foust                  rich    59 1573821 3.748838e-05
## 5338    Jeff Foust             scenarios    59 1573821 3.748838e-05
## 5339    Jeff Foust               sitting    59 1573821 3.748838e-05
## 5340    Jeff Foust                steady    59 1573821 3.748838e-05
## 5341    Jeff Foust              thornton    59 1573821 3.748838e-05
## 5342    Jeff Foust               tracked    59 1573821 3.748838e-05
## 5343    Jeff Foust                tucson    59 1573821 3.748838e-05
## 5344    Jeff Foust            undergoing    59 1573821 3.748838e-05
## 5345  Sandra Erwin                   age    59  716353 8.236163e-05
## 5346  Sandra Erwin                 alpha    59  716353 8.236163e-05
## 5347  Sandra Erwin                 asset    59  716353 8.236163e-05
## 5348  Sandra Erwin                  boss    59  716353 8.236163e-05
## 5349  Sandra Erwin              computer    59  716353 8.236163e-05
## 5350  Sandra Erwin             depending    59  716353 8.236163e-05
## 5351  Sandra Erwin              electric    59  716353 8.236163e-05
## 5352  Sandra Erwin               enabled    59  716353 8.236163e-05
## 5353  Sandra Erwin                   fit    59  716353 8.236163e-05
## 5354  Sandra Erwin                   hit    59  716353 8.236163e-05
## 5355  Sandra Erwin            integrator    59  716353 8.236163e-05
## 5356  Sandra Erwin         interoperable    59  716353 8.236163e-05
## 5357  Sandra Erwin                  iran    59  716353 8.236163e-05
## 5358  Sandra Erwin                legion    59  716353 8.236163e-05
## 5359  Sandra Erwin               liftoff    59  716353 8.236163e-05
## 5360  Sandra Erwin              minimize    59  716353 8.236163e-05
## 5361  Sandra Erwin                 motor    59  716353 8.236163e-05
## 5362  Sandra Erwin               o’toole    59  716353 8.236163e-05
## 5363  Sandra Erwin                  pick    59  716353 8.236163e-05
## 5364  Sandra Erwin                 plumb    59  716353 8.236163e-05
## 5365  Sandra Erwin             primarily    59  716353 8.236163e-05
## 5366  Sandra Erwin                  sets    59  716353 8.236163e-05
## 5367  Sandra Erwin                 story    59  716353 8.236163e-05
## 5368  Sandra Erwin                  tape    59  716353 8.236163e-05
## 5369  Sandra Erwin             timelines    59  716353 8.236163e-05
## 5370  Sandra Erwin         traditionally    59  716353 8.236163e-05
## 5371  Sandra Erwin                unlike    59  716353 8.236163e-05
## 5372  Sandra Erwin                 voice    59  716353 8.236163e-05
## 5373    Jeff Foust                    2a    58 1573821 3.685298e-05
## 5374    Jeff Foust          achievements    58 1573821 3.685298e-05
## 5375    Jeff Foust                   art    58 1573821 3.685298e-05
## 5376    Jeff Foust                 audit    58 1573821 3.685298e-05
## 5377    Jeff Foust           brownsville    58 1573821 3.685298e-05
## 5378    Jeff Foust                   cbs    58 1573821 3.685298e-05
## 5379    Jeff Foust           communicate    58 1573821 3.685298e-05
## 5380    Jeff Foust                  film    58 1573821 3.685298e-05
## 5381    Jeff Foust                imager    58 1573821 3.685298e-05
## 5382    Jeff Foust               intends    58 1573821 3.685298e-05
## 5383    Jeff Foust             interface    58 1573821 3.685298e-05
## 5384    Jeff Foust        interplanetary    58 1573821 3.685298e-05
## 5385    Jeff Foust                   i’d    58 1573821 3.685298e-05
## 5386    Jeff Foust          jurisdiction    58 1573821 3.685298e-05
## 5387    Jeff Foust                  kirk    58 1573821 3.685298e-05
## 5388    Jeff Foust                 korea    58 1573821 3.685298e-05
## 5389    Jeff Foust              longtime    58 1573821 3.685298e-05
## 5390    Jeff Foust               mandate    58 1573821 3.685298e-05
## 5391    Jeff Foust              momentum    58 1573821 3.685298e-05
## 5392    Jeff Foust              negative    58 1573821 3.685298e-05
## 5393    Jeff Foust               orbcomm    58 1573821 3.685298e-05
## 5394    Jeff Foust              promised    58 1573821 3.685298e-05
## 5395    Jeff Foust              restored    58 1573821 3.685298e-05
## 5396    Jeff Foust              resuming    58 1573821 3.685298e-05
## 5397    Jeff Foust           satellite’s    58 1573821 3.685298e-05
## 5398    Jeff Foust              segments    58 1573821 3.685298e-05
## 5399    Jeff Foust               shorter    58 1573821 3.685298e-05
## 5400    Jeff Foust                  spin    58 1573821 3.685298e-05
## 5401    Jeff Foust              splashed    58 1573821 3.685298e-05
## 5402    Jeff Foust             splashing    58 1573821 3.685298e-05
## 5403    Jeff Foust            sustaining    58 1573821 3.685298e-05
## 5404    Jeff Foust                 tower    58 1573821 3.685298e-05
## 5405    Jeff Foust              visiting    58 1573821 3.685298e-05
## 5406  Sandra Erwin               average    58  716353 8.096567e-05
## 5407  Sandra Erwin                 batch    58  716353 8.096567e-05
## 5408  Sandra Erwin        classification    58  716353 8.096567e-05
## 5409  Sandra Erwin          conventional    58  716353 8.096567e-05
## 5410  Sandra Erwin             departure    58  716353 8.096567e-05
## 5411  Sandra Erwin                depend    58  716353 8.096567e-05
## 5412  Sandra Erwin              dynamics    58  716353 8.096567e-05
## 5413  Sandra Erwin             exercises    58  716353 8.096567e-05
## 5414  Sandra Erwin              extended    58  716353 8.096567e-05
## 5415  Sandra Erwin                inhofe    58  716353 8.096567e-05
## 5416  Sandra Erwin               keynote    58  716353 8.096567e-05
## 5417  Sandra Erwin                 notes    58  716353 8.096567e-05
## 5418  Sandra Erwin                offers    58  716353 8.096567e-05
## 5419  Sandra Erwin                 plane    58  716353 8.096567e-05
## 5420  Sandra Erwin               promote    58  716353 8.096567e-05
## 5421  Sandra Erwin              property    58  716353 8.096567e-05
## 5422  Sandra Erwin             proponent    58  716353 8.096567e-05
## 5423  Sandra Erwin               renamed    58  716353 8.096567e-05
## 5424  Sandra Erwin            rendezvous    58  716353 8.096567e-05
## 5425  Sandra Erwin                 scott    58  716353 8.096567e-05
## 5426  Sandra Erwin             smallsats    58  716353 8.096567e-05
## 5427  Sandra Erwin                 smart    58  716353 8.096567e-05
## 5428  Sandra Erwin            sufficient    58  716353 8.096567e-05
## 5429    Jeff Foust              analysts    57 1573821 3.621759e-05
## 5430    Jeff Foust                andrew    57 1573821 3.621759e-05
## 5431    Jeff Foust            approached    57 1573821 3.621759e-05
## 5432    Jeff Foust          appropriated    57 1573821 3.621759e-05
## 5433    Jeff Foust                   asi    57 1573821 3.621759e-05
## 5434    Jeff Foust                 bella    57 1573821 3.621759e-05
## 5435    Jeff Foust             bilateral    57 1573821 3.621759e-05
## 5436    Jeff Foust                  caps    57 1573821 3.621759e-05
## 5437    Jeff Foust               captive    57 1573821 3.621759e-05
## 5438    Jeff Foust           chandrayaan    57 1573821 3.621759e-05
## 5439    Jeff Foust               charlie    57 1573821 3.621759e-05
## 5440    Jeff Foust             combining    57 1573821 3.621759e-05
## 5441    Jeff Foust            complement    57 1573821 3.621759e-05
## 5442    Jeff Foust               defunct    57 1573821 3.621759e-05
## 5443    Jeff Foust               england    57 1573821 3.621759e-05
## 5444    Jeff Foust                formed    57 1573821 3.621759e-05
## 5445    Jeff Foust            internally    57 1573821 3.621759e-05
## 5446    Jeff Foust                   ipo    57 1573821 3.621759e-05
## 5447    Jeff Foust                jacobs    57 1573821 3.621759e-05
## 5448    Jeff Foust                 lacks    57 1573821 3.621759e-05
## 5449    Jeff Foust                 leaks    57 1573821 3.621759e-05
## 5450    Jeff Foust              meyerson    57 1573821 3.621759e-05
## 5451    Jeff Foust                 myers    57 1573821 3.621759e-05
## 5452    Jeff Foust               noticed    57 1573821 3.621759e-05
## 5453    Jeff Foust                patent    57 1573821 3.621759e-05
## 5454    Jeff Foust            positioned    57 1573821 3.621759e-05
## 5455    Jeff Foust             pressures    57 1573821 3.621759e-05
## 5456    Jeff Foust                  rare    57 1573821 3.621759e-05
## 5457    Jeff Foust             regularly    57 1573821 3.621759e-05
## 5458    Jeff Foust              reliance    57 1573821 3.621759e-05
## 5459    Jeff Foust           represented    57 1573821 3.621759e-05
## 5460    Jeff Foust                revise    57 1573821 3.621759e-05
## 5461    Jeff Foust               rover’s    57 1573821 3.621759e-05
## 5462    Jeff Foust              sequence    57 1573821 3.621759e-05
## 5463    Jeff Foust                 sheet    57 1573821 3.621759e-05
## 5464    Jeff Foust             shortfall    57 1573821 3.621759e-05
## 5465    Jeff Foust                  shot    57 1573821 3.621759e-05
## 5466    Jeff Foust          subsequently    57 1573821 3.621759e-05
## 5467    Jeff Foust           supervision    57 1573821 3.621759e-05
## 5468    Jeff Foust               utility    57 1573821 3.621759e-05
## 5469    Jeff Foust              velocity    57 1573821 3.621759e-05
## 5470    Jeff Foust                  wear    57 1573821 3.621759e-05
## 5471  Sandra Erwin                   abl    57  716353 7.956971e-05
## 5472  Sandra Erwin              barriers    57  716353 7.956971e-05
## 5473  Sandra Erwin             deterrent    57  716353 7.956971e-05
## 5474  Sandra Erwin              dialogue    57  716353 7.956971e-05
## 5475  Sandra Erwin              feedback    57  716353 7.956971e-05
## 5476  Sandra Erwin               germany    57  716353 7.956971e-05
## 5477  Sandra Erwin                harbor    57  716353 7.956971e-05
## 5478  Sandra Erwin               heavily    57  716353 7.956971e-05
## 5479  Sandra Erwin          intellectual    57  716353 7.956971e-05
## 5480  Sandra Erwin               jammers    57  716353 7.956971e-05
## 5481  Sandra Erwin                middle    57  716353 7.956971e-05
## 5482  Sandra Erwin                 muend    57  716353 7.956971e-05
## 5483  Sandra Erwin            performing    57  716353 7.956971e-05
## 5484  Sandra Erwin              purchase    57  716353 7.956971e-05
## 5485  Sandra Erwin                 scope    57  716353 7.956971e-05
## 5486  Sandra Erwin                search    57  716353 7.956971e-05
## 5487  Sandra Erwin                serves    57  716353 7.956971e-05
## 5488  Sandra Erwin                 steve    57  716353 7.956971e-05
## 5489  Sandra Erwin             stricklan    57  716353 7.956971e-05
## 5490  Sandra Erwin              studying    57  716353 7.956971e-05
## 5491  Sandra Erwin                 stuff    57  716353 7.956971e-05
## 5492  Sandra Erwin              supplies    57  716353 7.956971e-05
## 5493  Sandra Erwin         transitioning    57  716353 7.956971e-05
## 5494  Sandra Erwin               urgency    57  716353 7.956971e-05
## 5495  Sandra Erwin                  ursa    57  716353 7.956971e-05
## 5496  Sandra Erwin                widely    57  716353 7.956971e-05
## 5497  Sandra Erwin             worldwide    57  716353 7.956971e-05
## 5498    Jeff Foust             addresses    56 1573821 3.558219e-05
## 5499    Jeff Foust                   ams    56 1573821 3.558219e-05
## 5500    Jeff Foust           assignments    56 1573821 3.558219e-05
## 5501    Jeff Foust             astro2020    56 1573821 3.558219e-05
## 5502    Jeff Foust                   cld    56 1573821 3.558219e-05
## 5503    Jeff Foust               closest    56 1573821 3.558219e-05
## 5504    Jeff Foust           constrained    56 1573821 3.558219e-05
## 5505    Jeff Foust               crashed    56 1573821 3.558219e-05
## 5506    Jeff Foust           departments    56 1573821 3.558219e-05
## 5507    Jeff Foust           deployments    56 1573821 3.558219e-05
## 5508    Jeff Foust                  died    56 1573821 3.558219e-05
## 5509    Jeff Foust                exceed    56 1573821 3.558219e-05
## 5510    Jeff Foust             execution    56 1573821 3.558219e-05
## 5511    Jeff Foust         extraordinary    56 1573821 3.558219e-05
## 5512    Jeff Foust               extreme    56 1573821 3.558219e-05
## 5513    Jeff Foust        geosynchronous    56 1573821 3.558219e-05
## 5514    Jeff Foust                  haot    56 1573821 3.558219e-05
## 5515    Jeff Foust                  isar    56 1573821 3.558219e-05
## 5516    Jeff Foust            jeopardize    56 1573821 3.558219e-05
## 5517    Jeff Foust                   mev    56 1573821 3.558219e-05
## 5518    Jeff Foust           neighboring    56 1573821 3.558219e-05
## 5519    Jeff Foust                    ns    56 1573821 3.558219e-05
## 5520    Jeff Foust         possibilities    56 1573821 3.558219e-05
## 5521    Jeff Foust             promoting    56 1573821 3.558219e-05
## 5522    Jeff Foust               proving    56 1573821 3.558219e-05
## 5523    Jeff Foust              receives    56 1573821 3.558219e-05
## 5524    Jeff Foust         relationships    56 1573821 3.558219e-05
## 5525    Jeff Foust                   rfp    56 1573821 3.558219e-05
## 5526    Jeff Foust                  rood    56 1573821 3.558219e-05
## 5527    Jeff Foust               stretch    56 1573821 3.558219e-05
## 5528    Jeff Foust                  tail    56 1573821 3.558219e-05
## 5529    Jeff Foust            throughput    56 1573821 3.558219e-05
## 5530    Jeff Foust                 touch    56 1573821 3.558219e-05
## 5531    Jeff Foust           transaction    56 1573821 3.558219e-05
## 5532    Jeff Foust                   wdr    56 1573821 3.558219e-05
## 5533  Sandra Erwin              accurate    56  716353 7.817375e-05
## 5534  Sandra Erwin               aligned    56  716353 7.817375e-05
## 5535  Sandra Erwin               balance    56  716353 7.817375e-05
## 5536  Sandra Erwin              boeing’s    56  716353 7.817375e-05
## 5537  Sandra Erwin                 bunch    56  716353 7.817375e-05
## 5538  Sandra Erwin             concluded    56  716353 7.817375e-05
## 5539  Sandra Erwin               enhance    56  716353 7.817375e-05
## 5540  Sandra Erwin               fairing    56  716353 7.817375e-05
## 5541  Sandra Erwin         hyperspectral    56  716353 7.817375e-05
## 5542  Sandra Erwin           immediately    56  716353 7.817375e-05
## 5543  Sandra Erwin             interfere    56  716353 7.817375e-05
## 5544  Sandra Erwin             knowledge    56  716353 7.817375e-05
## 5545  Sandra Erwin                kuiper    56  716353 7.817375e-05
## 5546  Sandra Erwin              laplante    56  716353 7.817375e-05
## 5547  Sandra Erwin               mandate    56  716353 7.817375e-05
## 5548  Sandra Erwin              obtained    56  716353 7.817375e-05
## 5549  Sandra Erwin             positions    56  716353 7.817375e-05
## 5550  Sandra Erwin              procured    56  716353 7.817375e-05
## 5551  Sandra Erwin               propose    56  716353 7.817375e-05
## 5552  Sandra Erwin           replacement    56  716353 7.817375e-05
## 5553  Sandra Erwin                sooner    56  716353 7.817375e-05
## 5554  Sandra Erwin           spokeswoman    56  716353 7.817375e-05
## 5555  Sandra Erwin               sustain    56  716353 7.817375e-05
## 5556  Sandra Erwin          transferring    56  716353 7.817375e-05
## 5557  Sandra Erwin               unclear    56  716353 7.817375e-05
## 5558    Jeff Foust                  45th    55 1573821 3.494680e-05
## 5559    Jeff Foust             advocated    55 1573821 3.494680e-05
## 5560    Jeff Foust                aldrin    55 1573821 3.494680e-05
## 5561    Jeff Foust          arrangements    55 1573821 3.494680e-05
## 5562    Jeff Foust                attend    55 1573821 3.494680e-05
## 5563    Jeff Foust                  bulk    55 1573821 3.494680e-05
## 5564    Jeff Foust               careful    55 1573821 3.494680e-05
## 5565    Jeff Foust               charged    55 1573821 3.494680e-05
## 5566    Jeff Foust          consequences    55 1573821 3.494680e-05
## 5567    Jeff Foust               cornell    55 1573821 3.494680e-05
## 5568    Jeff Foust          counterparts    55 1573821 3.494680e-05
## 5569    Jeff Foust             diversity    55 1573821 3.494680e-05
## 5570    Jeff Foust         effectiveness    55 1573821 3.494680e-05
## 5571    Jeff Foust              expenses    55 1573821 3.494680e-05
## 5572    Jeff Foust             featuring    55 1573821 3.494680e-05
## 5573    Jeff Foust                 hague    55 1573821 3.494680e-05
## 5574    Jeff Foust               helpful    55 1573821 3.494680e-05
## 5575    Jeff Foust             identical    55 1573821 3.494680e-05
## 5576    Jeff Foust               jessica    55 1573821 3.494680e-05
## 5577    Jeff Foust                london    55 1573821 3.494680e-05
## 5578    Jeff Foust               mergers    55 1573821 3.494680e-05
## 5579    Jeff Foust               monthly    55 1573821 3.494680e-05
## 5580    Jeff Foust             nonprofit    55 1573821 3.494680e-05
## 5581    Jeff Foust            parameters    55 1573821 3.494680e-05
## 5582    Jeff Foust             perfectly    55 1573821 3.494680e-05
## 5583    Jeff Foust            population    55 1573821 3.494680e-05
## 5584    Jeff Foust             quarterly    55 1573821 3.494680e-05
## 5585    Jeff Foust                raises    55 1573821 3.494680e-05
## 5586    Jeff Foust                rumors    55 1573821 3.494680e-05
## 5587    Jeff Foust                 sound    55 1573821 3.494680e-05
## 5588    Jeff Foust               summary    55 1573821 3.494680e-05
## 5589    Jeff Foust            superdraco    55 1573821 3.494680e-05
## 5590    Jeff Foust                talent    55 1573821 3.494680e-05
## 5591    Jeff Foust                   tax    55 1573821 3.494680e-05
## 5592    Jeff Foust            vertically    55 1573821 3.494680e-05
## 5593  Sandra Erwin                actors    55  716353 7.677779e-05
## 5594  Sandra Erwin              advisory    55  716353 7.677779e-05
## 5595  Sandra Erwin             advocated    55  716353 7.677779e-05
## 5596  Sandra Erwin                aerial    55  716353 7.677779e-05
## 5597  Sandra Erwin                barnes    55  716353 7.677779e-05
## 5598  Sandra Erwin                builds    55  716353 7.677779e-05
## 5599  Sandra Erwin                choice    55  716353 7.677779e-05
## 5600  Sandra Erwin            compromise    55  716353 7.677779e-05
## 5601  Sandra Erwin                    de    55  716353 7.677779e-05
## 5602  Sandra Erwin            dependence    55  716353 7.677779e-05
## 5603  Sandra Erwin               destroy    55  716353 7.677779e-05
## 5604  Sandra Erwin                  eyes    55  716353 7.677779e-05
## 5605  Sandra Erwin                 glide    55  716353 7.677779e-05
## 5606  Sandra Erwin             inspector    55  716353 7.677779e-05
## 5607  Sandra Erwin              internal    55  716353 7.677779e-05
## 5608  Sandra Erwin                 kinds    55  716353 7.677779e-05
## 5609  Sandra Erwin              managers    55  716353 7.677779e-05
## 5610  Sandra Erwin               measure    55  716353 7.677779e-05
## 5611  Sandra Erwin                nature    55  716353 7.677779e-05
## 5612  Sandra Erwin              peaceful    55  716353 7.677779e-05
## 5613  Sandra Erwin             preferred    55  716353 7.677779e-05
## 5614  Sandra Erwin            questioned    55  716353 7.677779e-05
## 5615  Sandra Erwin         relationships    55  716353 7.677779e-05
## 5616  Sandra Erwin       representatives    55  716353 7.677779e-05
## 5617  Sandra Erwin                 shape    55  716353 7.677779e-05
## 5618  Sandra Erwin             spaceport    55  716353 7.677779e-05
## 5619  Sandra Erwin             specifics    55  716353 7.677779e-05
## 5620  Sandra Erwin                spring    55  716353 7.677779e-05
## 5621  Sandra Erwin             towberman    55  716353 7.677779e-05
## 5622    Jeff Foust                adjust    54 1573821 3.431140e-05
## 5623    Jeff Foust               advisor    54 1573821 3.431140e-05
## 5624    Jeff Foust                  asia    54 1573821 3.431140e-05
## 5625    Jeff Foust                 braun    54 1573821 3.431140e-05
## 5626    Jeff Foust               capella    54 1573821 3.431140e-05
## 5627    Jeff Foust           contingency    54 1573821 3.431140e-05
## 5628    Jeff Foust              counting    54 1573821 3.431140e-05
## 5629    Jeff Foust                daniel    54 1573821 3.431140e-05
## 5630    Jeff Foust              deciding    54 1573821 3.431140e-05
## 5631    Jeff Foust          demonstrates    54 1573821 3.431140e-05
## 5632    Jeff Foust               forcing    54 1573821 3.431140e-05
## 5633    Jeff Foust           foreseeable    54 1573821 3.431140e-05
## 5634    Jeff Foust                  gary    54 1573821 3.431140e-05
## 5635    Jeff Foust               hartman    54 1573821 3.431140e-05
## 5636    Jeff Foust            horizontal    54 1573821 3.431140e-05
## 5637    Jeff Foust               imposed    54 1573821 3.431140e-05
## 5638    Jeff Foust                 indus    54 1573821 3.431140e-05
## 5639    Jeff Foust                 jones    54 1573821 3.431140e-05
## 5640    Jeff Foust                 judge    54 1573821 3.431140e-05
## 5641    Jeff Foust               margins    54 1573821 3.431140e-05
## 5642    Jeff Foust                 match    54 1573821 3.431140e-05
## 5643    Jeff Foust                 names    54 1573821 3.431140e-05
## 5644    Jeff Foust            prioritize    54 1573821 3.431140e-05
## 5645    Jeff Foust          radioisotope    54 1573821 3.431140e-05
## 5646    Jeff Foust               scaling    54 1573821 3.431140e-05
## 5647    Jeff Foust           specialists    54 1573821 3.431140e-05
## 5648    Jeff Foust                spirit    54 1573821 3.431140e-05
## 5649    Jeff Foust              stepping    54 1573821 3.431140e-05
## 5650    Jeff Foust            subsurface    54 1573821 3.431140e-05
## 5651    Jeff Foust                 swarm    54 1573821 3.431140e-05
## 5652    Jeff Foust                  tour    54 1573821 3.431140e-05
## 5653    Jeff Foust              wrapping    54 1573821 3.431140e-05
## 5654  Sandra Erwin            advantages    54  716353 7.538183e-05
## 5655  Sandra Erwin           application    54  716353 7.538183e-05
## 5656  Sandra Erwin                choose    54  716353 7.538183e-05
## 5657  Sandra Erwin                  colo    54  716353 7.538183e-05
## 5658  Sandra Erwin                 cross    54  716353 7.538183e-05
## 5659  Sandra Erwin             defending    54  716353 7.538183e-05
## 5660  Sandra Erwin                  east    54  716353 7.538183e-05
## 5661  Sandra Erwin                 ellen    54  716353 7.538183e-05
## 5662  Sandra Erwin             emergency    54  716353 7.538183e-05
## 5663  Sandra Erwin                expert    54  716353 7.538183e-05
## 5664  Sandra Erwin               handful    54  716353 7.538183e-05
## 5665  Sandra Erwin               landing    54  716353 7.538183e-05
## 5666  Sandra Erwin               license    54  716353 7.538183e-05
## 5667  Sandra Erwin              longtime    54  716353 7.538183e-05
## 5668  Sandra Erwin                manner    54  716353 7.538183e-05
## 5669  Sandra Erwin               mapping    54  716353 7.538183e-05
## 5670  Sandra Erwin                 night    54  716353 7.538183e-05
## 5671  Sandra Erwin                starts    54  716353 7.538183e-05
## 5672  Sandra Erwin               tactics    54  716353 7.538183e-05
## 5673  Sandra Erwin           transporter    54  716353 7.538183e-05
## 5674  Sandra Erwin                travel    54  716353 7.538183e-05
## 5675  Sandra Erwin                 voted    54  716353 7.538183e-05
## 5676  Sandra Erwin               william    54  716353 7.538183e-05
## 5677    Jeff Foust                 adopt    53 1573821 3.367600e-05
## 5678    Jeff Foust             advancing    53 1573821 3.367600e-05
## 5679    Jeff Foust               airline    53 1573821 3.367600e-05
## 5680    Jeff Foust              airports    53 1573821 3.367600e-05
## 5681    Jeff Foust             alexander    53 1573821 3.367600e-05
## 5682    Jeff Foust                 asset    53 1573821 3.367600e-05
## 5683    Jeff Foust                 bennu    53 1573821 3.367600e-05
## 5684    Jeff Foust                  bold    53 1573821 3.367600e-05
## 5685    Jeff Foust              citizens    53 1573821 3.367600e-05
## 5686    Jeff Foust            comparison    53 1573821 3.367600e-05
## 5687    Jeff Foust           cooperating    53 1573821 3.367600e-05
## 5688    Jeff Foust                deeper    53 1573821 3.367600e-05
## 5689    Jeff Foust               diverse    53 1573821 3.367600e-05
## 5690    Jeff Foust              dragon’s    53 1573821 3.367600e-05
## 5691    Jeff Foust                emerge    53 1573821 3.367600e-05
## 5692    Jeff Foust                euclid    53 1573821 3.367600e-05
## 5693    Jeff Foust                evolve    53 1573821 3.367600e-05
## 5694    Jeff Foust                  fees    53 1573821 3.367600e-05
## 5695    Jeff Foust               fledged    53 1573821 3.367600e-05
## 5696    Jeff Foust              function    53 1573821 3.367600e-05
## 5697    Jeff Foust            historical    53 1573821 3.367600e-05
## 5698    Jeff Foust            indefinite    53 1573821 3.367600e-05
## 5699    Jeff Foust             insertion    53 1573821 3.367600e-05
## 5700    Jeff Foust           integrating    53 1573821 3.367600e-05
## 5701    Jeff Foust            interfaces    53 1573821 3.367600e-05
## 5702    Jeff Foust            interviews    53 1573821 3.367600e-05
## 5703    Jeff Foust                  item    53 1573821 3.367600e-05
## 5704    Jeff Foust                  ixpe    53 1573821 3.367600e-05
## 5705    Jeff Foust                  link    53 1573821 3.367600e-05
## 5706    Jeff Foust               machine    53 1573821 3.367600e-05
## 5707    Jeff Foust                  odds    53 1573821 3.367600e-05
## 5708    Jeff Foust                offset    53 1573821 3.367600e-05
## 5709    Jeff Foust              prospect    53 1573821 3.367600e-05
## 5710    Jeff Foust               publish    53 1573821 3.367600e-05
## 5711    Jeff Foust             purchases    53 1573821 3.367600e-05
## 5712    Jeff Foust              recorded    53 1573821 3.367600e-05
## 5713    Jeff Foust               reduces    53 1573821 3.367600e-05
## 5714    Jeff Foust            reelection    53 1573821 3.367600e-05
## 5715    Jeff Foust                   sat    53 1573821 3.367600e-05
## 5716    Jeff Foust              securing    53 1573821 3.367600e-05
## 5717    Jeff Foust                 skies    53 1573821 3.367600e-05
## 5718    Jeff Foust          spaceshipone    53 1573821 3.367600e-05
## 5719    Jeff Foust                 spain    53 1573821 3.367600e-05
## 5720    Jeff Foust                  span    53 1573821 3.367600e-05
## 5721    Jeff Foust                   sso    53 1573821 3.367600e-05
## 5722    Jeff Foust               staying    53 1573821 3.367600e-05
## 5723    Jeff Foust                suffer    53 1573821 3.367600e-05
## 5724    Jeff Foust                  twin    53 1573821 3.367600e-05
## 5725    Jeff Foust            understood    53 1573821 3.367600e-05
## 5726    Jeff Foust               variant    53 1573821 3.367600e-05
## 5727    Jeff Foust               varying    53 1573821 3.367600e-05
## 5728    Jeff Foust             viability    53 1573821 3.367600e-05
## 5729    Jeff Foust                  volz    53 1573821 3.367600e-05
## 5730    Jeff Foust                  wolf    53 1573821 3.367600e-05
## 5731  Sandra Erwin                advice    53  716353 7.398587e-05
## 5732  Sandra Erwin          astronautics    53  716353 7.398587e-05
## 5733  Sandra Erwin               bidders    53  716353 7.398587e-05
## 5734  Sandra Erwin            collisions    53  716353 7.398587e-05
## 5735  Sandra Erwin         comprehensive    53  716353 7.398587e-05
## 5736  Sandra Erwin            conducting    53  716353 7.398587e-05
## 5737  Sandra Erwin                    cr    53  716353 7.398587e-05
## 5738  Sandra Erwin            designated    53  716353 7.398587e-05
## 5739  Sandra Erwin                  dmsp    53  716353 7.398587e-05
## 5740  Sandra Erwin                 drone    53  716353 7.398587e-05
## 5741  Sandra Erwin           essentially    53  716353 7.398587e-05
## 5742  Sandra Erwin                 fewer    53  716353 7.398587e-05
## 5743  Sandra Erwin             framework    53  716353 7.398587e-05
## 5744  Sandra Erwin               hostile    53  716353 7.398587e-05
## 5745  Sandra Erwin            industry’s    53  716353 7.398587e-05
## 5746  Sandra Erwin                  labs    53  716353 7.398587e-05
## 5747  Sandra Erwin              millions    53  716353 7.398587e-05
## 5748  Sandra Erwin             procuring    53  716353 7.398587e-05
## 5749  Sandra Erwin            represents    53  716353 7.398587e-05
## 5750  Sandra Erwin              rhetoric    53  716353 7.398587e-05
## 5751  Sandra Erwin                 rival    53  716353 7.398587e-05
## 5752  Sandra Erwin                social    53  716353 7.398587e-05
## 5753  Sandra Erwin              warnings    53  716353 7.398587e-05
## 5754  Sandra Erwin               world’s    53  716353 7.398587e-05
## 5755    Jeff Foust               academy    52 1573821 3.304061e-05
## 5756    Jeff Foust           authorities    52 1573821 3.304061e-05
## 5757    Jeff Foust                bottom    52 1573821 3.304061e-05
## 5758    Jeff Foust             buildings    52 1573821 3.304061e-05
## 5759    Jeff Foust            confirming    52 1573821 3.304061e-05
## 5760    Jeff Foust           congressman    52 1573821 3.304061e-05
## 5761    Jeff Foust          coordinating    52 1573821 3.304061e-05
## 5762    Jeff Foust               counsel    52 1573821 3.304061e-05
## 5763    Jeff Foust                 depth    52 1573821 3.304061e-05
## 5764    Jeff Foust          dramatically    52 1573821 3.304061e-05
## 5765    Jeff Foust               ensures    52 1573821 3.304061e-05
## 5766    Jeff Foust              exercise    52 1573821 3.304061e-05
## 5767    Jeff Foust               failing    52 1573821 3.304061e-05
## 5768    Jeff Foust                 fight    52 1573821 3.304061e-05
## 5769    Jeff Foust                 flies    52 1573821 3.304061e-05
## 5770    Jeff Foust                   fun    52 1573821 3.304061e-05
## 5771    Jeff Foust                galaxy    52 1573821 3.304061e-05
## 5772    Jeff Foust            globalstar    52 1573821 3.304061e-05
## 5773    Jeff Foust               hawkeye    52 1573821 3.304061e-05
## 5774    Jeff Foust                 hosts    52 1573821 3.304061e-05
## 5775    Jeff Foust               kavandi    52 1573821 3.304061e-05
## 5776    Jeff Foust               lifting    52 1573821 3.304061e-05
## 5777    Jeff Foust                   llc    52 1573821 3.304061e-05
## 5778    Jeff Foust              outlines    52 1573821 3.304061e-05
## 5779    Jeff Foust                passes    52 1573821 3.304061e-05
## 5780    Jeff Foust                plasma    52 1573821 3.304061e-05
## 5781    Jeff Foust               players    52 1573821 3.304061e-05
## 5782    Jeff Foust              redesign    52 1573821 3.304061e-05
## 5783    Jeff Foust              simulate    52 1573821 3.304061e-05
## 5784    Jeff Foust                smooth    52 1573821 3.304061e-05
## 5785    Jeff Foust             speculate    52 1573821 3.304061e-05
## 5786    Jeff Foust              supplier    52 1573821 3.304061e-05
## 5787    Jeff Foust                 tasks    52 1573821 3.304061e-05
## 5788    Jeff Foust                  tdrs    52 1573821 3.304061e-05
## 5789    Jeff Foust                 theme    52 1573821 3.304061e-05
## 5790    Jeff Foust               trained    52 1573821 3.304061e-05
## 5791    Jeff Foust          unidentified    52 1573821 3.304061e-05
## 5792    Jeff Foust               veteran    52 1573821 3.304061e-05
## 5793    Jeff Foust                voting    52 1573821 3.304061e-05
## 5794    Jeff Foust                  walk    52 1573821 3.304061e-05
## 5795  Sandra Erwin                 1990s    52  716353 7.258991e-05
## 5796  Sandra Erwin           accelerator    52  716353 7.258991e-05
## 5797  Sandra Erwin          appropriated    52  716353 7.258991e-05
## 5798  Sandra Erwin            authorizes    52  716353 7.258991e-05
## 5799  Sandra Erwin                  beck    52  716353 7.258991e-05
## 5800  Sandra Erwin               brigade    52  716353 7.258991e-05
## 5801  Sandra Erwin                  bulk    52  716353 7.258991e-05
## 5802  Sandra Erwin                   cbo    52  716353 7.258991e-05
## 5803  Sandra Erwin            completion    52  716353 7.258991e-05
## 5804  Sandra Erwin                 court    52  716353 7.258991e-05
## 5805  Sandra Erwin                  crew    52  716353 7.258991e-05
## 5806  Sandra Erwin                 daily    52  716353 7.258991e-05
## 5807  Sandra Erwin                damage    52  716353 7.258991e-05
## 5808  Sandra Erwin                denver    52  716353 7.258991e-05
## 5809  Sandra Erwin                easily    52  716353 7.258991e-05
## 5810  Sandra Erwin       electromagnetic    52  716353 7.258991e-05
## 5811  Sandra Erwin               fighter    52  716353 7.258991e-05
## 5812  Sandra Erwin                  flag    52  716353 7.258991e-05
## 5813  Sandra Erwin               frazier    52  716353 7.258991e-05
## 5814  Sandra Erwin                grason    52  716353 7.258991e-05
## 5815  Sandra Erwin          historically    52  716353 7.258991e-05
## 5816  Sandra Erwin              improved    52  716353 7.258991e-05
## 5817  Sandra Erwin           maneuvering    52  716353 7.258991e-05
## 5818  Sandra Erwin               matters    52  716353 7.258991e-05
## 5819  Sandra Erwin                posted    52  716353 7.258991e-05
## 5820  Sandra Erwin             privately    52  716353 7.258991e-05
## 5821  Sandra Erwin                 raise    52  716353 7.258991e-05
## 5822  Sandra Erwin             recognize    52  716353 7.258991e-05
## 5823  Sandra Erwin                  rest    52  716353 7.258991e-05
## 5824  Sandra Erwin               revisit    52  716353 7.258991e-05
## 5825  Sandra Erwin             secondary    52  716353 7.258991e-05
## 5826  Sandra Erwin                  spot    52  716353 7.258991e-05
## 5827  Sandra Erwin                   tom    52  716353 7.258991e-05
## 5828  Sandra Erwin            trajectory    52  716353 7.258991e-05
## 5829  Sandra Erwin              vertical    52  716353 7.258991e-05
## 5830    Jeff Foust          acceleration    51 1573821 3.240521e-05
## 5831    Jeff Foust                africa    51 1573821 3.240521e-05
## 5832    Jeff Foust              argument    51 1573821 3.240521e-05
## 5833    Jeff Foust           arianegroup    51 1573821 3.240521e-05
## 5834    Jeff Foust                assume    51 1573821 3.240521e-05
## 5835    Jeff Foust            biological    51 1573821 3.240521e-05
## 5836    Jeff Foust                 brown    51 1573821 3.240521e-05
## 5837    Jeff Foust          conjunctions    51 1573821 3.240521e-05
## 5838    Jeff Foust            controller    51 1573821 3.240521e-05
## 5839    Jeff Foust                  cool    51 1573821 3.240521e-05
## 5840    Jeff Foust                 cross    51 1573821 3.240521e-05
## 5841    Jeff Foust                 debut    51 1573821 3.240521e-05
## 5842    Jeff Foust            deliberate    51 1573821 3.240521e-05
## 5843    Jeff Foust                 desch    51 1573821 3.240521e-05
## 5844    Jeff Foust           destructive    51 1573821 3.240521e-05
## 5845    Jeff Foust               didymos    51 1573821 3.240521e-05
## 5846    Jeff Foust             dimorphos    51 1573821 3.240521e-05
## 5847    Jeff Foust                  dove    51 1573821 3.240521e-05
## 5848    Jeff Foust                   dry    51 1573821 3.240521e-05
## 5849    Jeff Foust                fusion    51 1573821 3.240521e-05
## 5850    Jeff Foust               gearing    51 1573821 3.240521e-05
## 5851    Jeff Foust              hakamada    51 1573821 3.240521e-05
## 5852    Jeff Foust               honored    51 1573821 3.240521e-05
## 5853    Jeff Foust               horizon    51 1573821 3.240521e-05
## 5854    Jeff Foust           interaction    51 1573821 3.240521e-05
## 5855    Jeff Foust               islands    51 1573821 3.240521e-05
## 5856    Jeff Foust             kargieman    51 1573821 3.240521e-05
## 5857    Jeff Foust              kirasich    51 1573821 3.240521e-05
## 5858    Jeff Foust                merged    51 1573821 3.240521e-05
## 5859    Jeff Foust              moisture    51 1573821 3.240521e-05
## 5860    Jeff Foust                 moran    51 1573821 3.240521e-05
## 5861    Jeff Foust                  navy    51 1573821 3.240521e-05
## 5862    Jeff Foust                nicole    51 1573821 3.240521e-05
## 5863    Jeff Foust        organizational    51 1573821 3.240521e-05
## 5864    Jeff Foust               orion’s    51 1573821 3.240521e-05
## 5865    Jeff Foust              partisan    51 1573821 3.240521e-05
## 5866    Jeff Foust            protecting    51 1573821 3.240521e-05
## 5867    Jeff Foust                 quinn    51 1573821 3.240521e-05
## 5868    Jeff Foust               reactor    51 1573821 3.240521e-05
## 5869    Jeff Foust           restriction    51 1573821 3.240521e-05
## 5870    Jeff Foust              shutting    51 1573821 3.240521e-05
## 5871    Jeff Foust                skybox    51 1573821 3.240521e-05
## 5872    Jeff Foust                   stp    51 1573821 3.240521e-05
## 5873    Jeff Foust              supposed    51 1573821 3.240521e-05
## 5874    Jeff Foust                 taxes    51 1573821 3.240521e-05
## 5875    Jeff Foust                 tight    51 1573821 3.240521e-05
## 5876    Jeff Foust               trump’s    51 1573821 3.240521e-05
## 5877    Jeff Foust                watzin    51 1573821 3.240521e-05
## 5878    Jeff Foust                 words    51 1573821 3.240521e-05
## 5879  Sandra Erwin              adoption    51  716353 7.119395e-05
## 5880  Sandra Erwin                afford    51  716353 7.119395e-05
## 5881  Sandra Erwin            anticipate    51  716353 7.119395e-05
## 5882  Sandra Erwin               arguing    51  716353 7.119395e-05
## 5883  Sandra Erwin                 astra    51  716353 7.119395e-05
## 5884  Sandra Erwin                    c2    51  716353 7.119395e-05
## 5885  Sandra Erwin               combine    51  716353 7.119395e-05
## 5886  Sandra Erwin              deadline    51  716353 7.119395e-05
## 5887  Sandra Erwin             demanding    51  716353 7.119395e-05
## 5888  Sandra Erwin            difference    51  716353 7.119395e-05
## 5889  Sandra Erwin                dozens    51  716353 7.119395e-05
## 5890  Sandra Erwin              eligible    51  716353 7.119395e-05
## 5891  Sandra Erwin              engineer    51  716353 7.119395e-05
## 5892  Sandra Erwin                 enter    51  716353 7.119395e-05
## 5893  Sandra Erwin                   ess    51  716353 7.119395e-05
## 5894  Sandra Erwin             existence    51  716353 7.119395e-05
## 5895  Sandra Erwin                fueled    51  716353 7.119395e-05
## 5896  Sandra Erwin           fundamental    51  716353 7.119395e-05
## 5897  Sandra Erwin             griffin’s    51  716353 7.119395e-05
## 5898  Sandra Erwin               helpful    51  716353 7.119395e-05
## 5899  Sandra Erwin                herman    51  716353 7.119395e-05
## 5900  Sandra Erwin                lasers    51  716353 7.119395e-05
## 5901  Sandra Erwin               minimum    51  716353 7.119395e-05
## 5902  Sandra Erwin             offensive    51  716353 7.119395e-05
## 5903  Sandra Erwin                proven    51  716353 7.119395e-05
## 5904  Sandra Erwin              replaced    51  716353 7.119395e-05
## 5905  Sandra Erwin                 roles    51  716353 7.119395e-05
## 5906  Sandra Erwin            separately    51  716353 7.119395e-05
## 5907  Sandra Erwin               storage    51  716353 7.119395e-05
## 5908  Sandra Erwin              strongly    51  716353 7.119395e-05
## 5909  Sandra Erwin                turner    51  716353 7.119395e-05
## 5910    Jeff Foust             affecting    50 1573821 3.176981e-05
## 5911    Jeff Foust             analyzing    50 1573821 3.176981e-05
## 5912    Jeff Foust                anchor    50 1573821 3.176981e-05
## 5913    Jeff Foust           arrangement    50 1573821 3.176981e-05
## 5914    Jeff Foust                branch    50 1573821 3.176981e-05
## 5915    Jeff Foust                 cache    50 1573821 3.176981e-05
## 5916    Jeff Foust              cantrell    50 1573821 3.176981e-05
## 5917    Jeff Foust               chang’e    50 1573821 3.176981e-05
## 5918    Jeff Foust            compromise    50 1573821 3.176981e-05
## 5919    Jeff Foust                  dish    50 1573821 3.176981e-05
## 5920    Jeff Foust             endeavour    50 1573821 3.176981e-05
## 5921    Jeff Foust       entrepreneurial    50 1573821 3.176981e-05
## 5922    Jeff Foust                   eva    50 1573821 3.176981e-05
## 5923    Jeff Foust               evolved    50 1573821 3.176981e-05
## 5924    Jeff Foust            excitement    50 1573821 3.176981e-05
## 5925    Jeff Foust                 fault    50 1573821 3.176981e-05
## 5926    Jeff Foust              founding    50 1573821 3.176981e-05
## 5927    Jeff Foust               fulfill    50 1573821 3.176981e-05
## 5928    Jeff Foust              geekwire    50 1573821 3.176981e-05
## 5929    Jeff Foust            indication    50 1573821 3.176981e-05
## 5930    Jeff Foust          interstellar    50 1573821 3.176981e-05
## 5931    Jeff Foust              kokorich    50 1573821 3.176981e-05
## 5932    Jeff Foust           limitations    50 1573821 3.176981e-05
## 5933    Jeff Foust                loftid    50 1573821 3.176981e-05
## 5934    Jeff Foust               maezawa    50 1573821 3.176981e-05
## 5935    Jeff Foust                  neos    50 1573821 3.176981e-05
## 5936    Jeff Foust                niebur    50 1573821 3.176981e-05
## 5937    Jeff Foust              notified    50 1573821 3.176981e-05
## 5938    Jeff Foust              pasadena    50 1573821 3.176981e-05
## 5939    Jeff Foust                 peggy    50 1573821 3.176981e-05
## 5940    Jeff Foust            questioned    50 1573821 3.176981e-05
## 5941    Jeff Foust           refurbished    50 1573821 3.176981e-05
## 5942    Jeff Foust               renamed    50 1573821 3.176981e-05
## 5943    Jeff Foust            resilience    50 1573821 3.176981e-05
## 5944    Jeff Foust            responding    50 1573821 3.176981e-05
## 5945    Jeff Foust              retained    50 1573821 3.176981e-05
## 5946    Jeff Foust              shipping    50 1573821 3.176981e-05
## 5947    Jeff Foust               simplex    50 1573821 3.176981e-05
## 5948    Jeff Foust                thirds    50 1573821 3.176981e-05
## 5949    Jeff Foust               touched    50 1573821 3.176981e-05
## 5950    Jeff Foust               transit    50 1573821 3.176981e-05
## 5951    Jeff Foust              transmit    50 1573821 3.176981e-05
## 5952    Jeff Foust           transported    50 1573821 3.176981e-05
## 5953    Jeff Foust               unknown    50 1573821 3.176981e-05
## 5954    Jeff Foust                weight    50 1573821 3.176981e-05
## 5955  Sandra Erwin          acknowledged    50  716353 6.979799e-05
## 5956  Sandra Erwin         administrator    50  716353 6.979799e-05
## 5957  Sandra Erwin                 afspc    50  716353 6.979799e-05
## 5958  Sandra Erwin               anomaly    50  716353 6.979799e-05
## 5959  Sandra Erwin                argues    50  716353 6.979799e-05
## 5960  Sandra Erwin               armagno    50  716353 6.979799e-05
## 5961  Sandra Erwin          availability    50  716353 6.979799e-05
## 5962  Sandra Erwin               enacted    50  716353 6.979799e-05
## 5963  Sandra Erwin              expanded    50  716353 6.979799e-05
## 5964  Sandra Erwin           experienced    50  716353 6.979799e-05
## 5965  Sandra Erwin                 hicks    50  716353 6.979799e-05
## 5966  Sandra Erwin              homeland    50  716353 6.979799e-05
## 5967  Sandra Erwin           innovations    50  716353 6.979799e-05
## 5968  Sandra Erwin          interceptors    50  716353 6.979799e-05
## 5969  Sandra Erwin               johnson    50  716353 6.979799e-05
## 5970  Sandra Erwin                joseph    50  716353 6.979799e-05
## 5971  Sandra Erwin               learned    50  716353 6.979799e-05
## 5972  Sandra Erwin                losing    50  716353 6.979799e-05
## 5973  Sandra Erwin             maneuvers    50  716353 6.979799e-05
## 5974  Sandra Erwin                  mars    50  716353 6.979799e-05
## 5975  Sandra Erwin                  mind    50  716353 6.979799e-05
## 5976  Sandra Erwin               mynaric    50  716353 6.979799e-05
## 5977  Sandra Erwin         operationally    50  716353 6.979799e-05
## 5978  Sandra Erwin         participation    50  716353 6.979799e-05
## 5979  Sandra Erwin          professional    50  716353 6.979799e-05
## 5980  Sandra Erwin           proprietary    50  716353 6.979799e-05
## 5981  Sandra Erwin        recommendation    50  716353 6.979799e-05
## 5982  Sandra Erwin                rising    50  716353 6.979799e-05
## 5983  Sandra Erwin                  rose    50  716353 6.979799e-05
## 5984  Sandra Erwin         unprecedented    50  716353 6.979799e-05
## 5985  Sandra Erwin                urgent    50  716353 6.979799e-05
## 5986  Sandra Erwin       vulnerabilities    50  716353 6.979799e-05
## 5987    Jeff Foust           achievement    49 1573821 3.113442e-05
## 5988    Jeff Foust                afford    49 1573821 3.113442e-05
## 5989    Jeff Foust               alegría    49 1573821 3.113442e-05
## 5990    Jeff Foust         architectures    49 1573821 3.113442e-05
## 5991    Jeff Foust                  avio    49 1573821 3.113442e-05
## 5992    Jeff Foust              avoiding    49 1573821 3.113442e-05
## 5993    Jeff Foust                barter    49 1573821 3.113442e-05
## 5994    Jeff Foust                burden    49 1573821 3.113442e-05
## 5995    Jeff Foust                 burst    49 1573821 3.113442e-05
## 5996    Jeff Foust                cables    49 1573821 3.113442e-05
## 5997    Jeff Foust              civilian    49 1573821 3.113442e-05
## 5998    Jeff Foust               content    49 1573821 3.113442e-05
## 5999    Jeff Foust           coronagraph    49 1573821 3.113442e-05
## 6000    Jeff Foust          crowdfunding    49 1573821 3.113442e-05
## 6001    Jeff Foust                cruise    49 1573821 3.113442e-05
## 6002    Jeff Foust                 dwarf    49 1573821 3.113442e-05
## 6003    Jeff Foust           enterprises    49 1573821 3.113442e-05
## 6004    Jeff Foust                  flaw    49 1573821 3.113442e-05
## 6005    Jeff Foust            greenhouse    49 1573821 3.113442e-05
## 6006    Jeff Foust                  hans    49 1573821 3.113442e-05
## 6007    Jeff Foust                 ideal    49 1573821 3.113442e-05
## 6008    Jeff Foust            inspection    49 1573821 3.113442e-05
## 6009    Jeff Foust             interfere    49 1573821 3.113442e-05
## 6010    Jeff Foust              jeopardy    49 1573821 3.113442e-05
## 6011    Jeff Foust                   jsc    49 1573821 3.113442e-05
## 6012    Jeff Foust              lagrange    49 1573821 3.113442e-05
## 6013    Jeff Foust                 lópez    49 1573821 3.113442e-05
## 6014    Jeff Foust            maintained    49 1573821 3.113442e-05
## 6015    Jeff Foust              maturity    49 1573821 3.113442e-05
## 6016    Jeff Foust            meaningful    49 1573821 3.113442e-05
## 6017    Jeff Foust            mechanisms    49 1573821 3.113442e-05
## 6018    Jeff Foust              minotaur    49 1573821 3.113442e-05
## 6019    Jeff Foust                   mit    49 1573821 3.113442e-05
## 6020    Jeff Foust              observed    49 1573821 3.113442e-05
## 6021    Jeff Foust              occurred    49 1573821 3.113442e-05
## 6022    Jeff Foust             particles    49 1573821 3.113442e-05
## 6023    Jeff Foust             perceived    49 1573821 3.113442e-05
## 6024    Jeff Foust              performs    49 1573821 3.113442e-05
## 6025    Jeff Foust                 photo    49 1573821 3.113442e-05
## 6026    Jeff Foust                 ports    49 1573821 3.113442e-05
## 6027    Jeff Foust            preventing    49 1573821 3.113442e-05
## 6028    Jeff Foust                ranges    49 1573821 3.113442e-05
## 6029    Jeff Foust             recommend    49 1573821 3.113442e-05
## 6030    Jeff Foust             reflected    49 1573821 3.113442e-05
## 6031    Jeff Foust               relying    49 1573821 3.113442e-05
## 6032    Jeff Foust            repository    49 1573821 3.113442e-05
## 6033    Jeff Foust                 rides    49 1573821 3.113442e-05
## 6034    Jeff Foust               silicon    49 1573821 3.113442e-05
## 6035    Jeff Foust                 slips    49 1573821 3.113442e-05
## 6036    Jeff Foust         substantially    49 1573821 3.113442e-05
## 6037    Jeff Foust                surrey    49 1573821 3.113442e-05
## 6038    Jeff Foust            sutherland    49 1573821 3.113442e-05
## 6039    Jeff Foust                  swap    49 1573821 3.113442e-05
## 6040    Jeff Foust                 tokyo    49 1573821 3.113442e-05
## 6041    Jeff Foust               tonight    49 1573821 3.113442e-05
## 6042    Jeff Foust                 trend    49 1573821 3.113442e-05
## 6043    Jeff Foust                   vms    49 1573821 3.113442e-05
## 6044    Jeff Foust                xinhua    49 1573821 3.113442e-05
## 6045  Sandra Erwin               amounts    49  716353 6.840203e-05
## 6046  Sandra Erwin            astronauts    49  716353 6.840203e-05
## 6047  Sandra Erwin               calling    49  716353 6.840203e-05
## 6048  Sandra Erwin                  cell    49  716353 6.840203e-05
## 6049  Sandra Erwin              ceremony    49  716353 6.840203e-05
## 6050  Sandra Erwin                 clean    49  716353 6.840203e-05
## 6051  Sandra Erwin         configuration    49  716353 6.840203e-05
## 6052  Sandra Erwin               depends    49  716353 6.840203e-05
## 6053  Sandra Erwin                  door    49  716353 6.840203e-05
## 6054  Sandra Erwin          dramatically    49  716353 6.840203e-05
## 6055  Sandra Erwin               dunford    49  716353 6.840203e-05
## 6056  Sandra Erwin               examine    49  716353 6.840203e-05
## 6057  Sandra Erwin             exploring    49  716353 6.840203e-05
## 6058  Sandra Erwin                gattle    49  716353 6.840203e-05
## 6059  Sandra Erwin              informed    49  716353 6.840203e-05
## 6060  Sandra Erwin           launcherone    49  716353 6.840203e-05
## 6061  Sandra Erwin              ligado’s    49  716353 6.840203e-05
## 6062  Sandra Erwin           participate    49  716353 6.840203e-05
## 6063  Sandra Erwin               playing    49  716353 6.840203e-05
## 6064  Sandra Erwin             reviewing    49  716353 6.840203e-05
## 6065  Sandra Erwin              russians    49  716353 6.840203e-05
## 6066  Sandra Erwin               segundo    49  716353 6.840203e-05
## 6067  Sandra Erwin               silicon    49  716353 6.840203e-05
## 6068  Sandra Erwin                skills    49  716353 6.840203e-05
## 6069  Sandra Erwin            strengthen    49  716353 6.840203e-05
## 6070  Sandra Erwin              unmanned    49  716353 6.840203e-05
## 6071  Sandra Erwin                vaughn    49  716353 6.840203e-05
## 6072    Jeff Foust               affects    48 1573821 3.049902e-05
## 6073    Jeff Foust              balanced    48 1573821 3.049902e-05
## 6074    Jeff Foust             blueprint    48 1573821 3.049902e-05
## 6075    Jeff Foust                 clock    48 1573821 3.049902e-05
## 6076    Jeff Foust               closure    48 1573821 3.049902e-05
## 6077    Jeff Foust                  code    48 1573821 3.049902e-05
## 6078    Jeff Foust            compatible    48 1573821 3.049902e-05
## 6079    Jeff Foust            culbertson    48 1573821 3.049902e-05
## 6080    Jeff Foust                 dated    48 1573821 3.049902e-05
## 6081    Jeff Foust            describing    48 1573821 3.049902e-05
## 6082    Jeff Foust              dialogue    48 1573821 3.049902e-05
## 6083    Jeff Foust                eighth    48 1573821 3.049902e-05
## 6084    Jeff Foust                  expo    48 1573821 3.049902e-05
## 6085    Jeff Foust               firings    48 1573821 3.049902e-05
## 6086    Jeff Foust                 frame    48 1573821 3.049902e-05
## 6087    Jeff Foust            guaranteed    48 1573821 3.049902e-05
## 6088    Jeff Foust            installing    48 1573821 3.049902e-05
## 6089    Jeff Foust         institutional    48 1573821 3.049902e-05
## 6090    Jeff Foust       instrumentation    48 1573821 3.049902e-05
## 6091    Jeff Foust                  legs    48 1573821 3.049902e-05
## 6092    Jeff Foust                mccain    48 1573821 3.049902e-05
## 6093    Jeff Foust                musk’s    48 1573821 3.049902e-05
## 6094    Jeff Foust                  neil    48 1573821 3.049902e-05
## 6095    Jeff Foust             paperwork    48 1573821 3.049902e-05
## 6096    Jeff Foust                  pool    48 1573821 3.049902e-05
## 6097    Jeff Foust                 poses    48 1573821 3.049902e-05
## 6098    Jeff Foust           rectilinear    48 1573821 3.049902e-05
## 6099    Jeff Foust             reentered    48 1573821 3.049902e-05
## 6100    Jeff Foust                 sarge    48 1573821 3.049902e-05
## 6101    Jeff Foust              saturn’s    48 1573821 3.049902e-05
## 6102    Jeff Foust                 steel    48 1573821 3.049902e-05
## 6103    Jeff Foust                 stick    48 1573821 3.049902e-05
## 6104    Jeff Foust             technique    48 1573821 3.049902e-05
## 6105    Jeff Foust           transferred    48 1573821 3.049902e-05
## 6106    Jeff Foust          transparency    48 1573821 3.049902e-05
## 6107    Jeff Foust               written    48 1573821 3.049902e-05
## 6108  Sandra Erwin             ambitious    48  716353 6.700607e-05
## 6109  Sandra Erwin              cardillo    48  716353 6.700607e-05
## 6110  Sandra Erwin               carried    48  716353 6.700607e-05
## 6111  Sandra Erwin               critics    48  716353 6.700607e-05
## 6112  Sandra Erwin          digitalglobe    48  716353 6.700607e-05
## 6113  Sandra Erwin           distributed    48  716353 6.700607e-05
## 6114  Sandra Erwin             diversity    48  716353 6.700607e-05
## 6115  Sandra Erwin              dominant    48  716353 6.700607e-05
## 6116  Sandra Erwin                 equip    48  716353 6.700607e-05
## 6117  Sandra Erwin                  feel    48  716353 6.700607e-05
## 6118  Sandra Erwin                  he’s    48  716353 6.700607e-05
## 6119  Sandra Erwin               impacts    48  716353 6.700607e-05
## 6120  Sandra Erwin            imperative    48  716353 6.700607e-05
## 6121  Sandra Erwin                  jeff    48  716353 6.700607e-05
## 6122  Sandra Erwin                jstars    48  716353 6.700607e-05
## 6123  Sandra Erwin              kilogram    48  716353 6.700607e-05
## 6124  Sandra Erwin                  lose    48  716353 6.700607e-05
## 6125  Sandra Erwin              materiel    48  716353 6.700607e-05
## 6126  Sandra Erwin                    md    48  716353 6.700607e-05
## 6127  Sandra Erwin            narrowband    48  716353 6.700607e-05
## 6128  Sandra Erwin              northern    48  716353 6.700607e-05
## 6129  Sandra Erwin             objective    48  716353 6.700607e-05
## 6130  Sandra Erwin                planes    48  716353 6.700607e-05
## 6131  Sandra Erwin                player    48  716353 6.700607e-05
## 6132  Sandra Erwin              predicts    48  716353 6.700607e-05
## 6133  Sandra Erwin            recruiting    48  716353 6.700607e-05
## 6134  Sandra Erwin            scientific    48  716353 6.700607e-05
## 6135  Sandra Erwin              senators    48  716353 6.700607e-05
## 6136  Sandra Erwin            separation    48  716353 6.700607e-05
## 6137  Sandra Erwin               session    48  716353 6.700607e-05
## 6138  Sandra Erwin              stronger    48  716353 6.700607e-05
## 6139  Sandra Erwin              surprise    48  716353 6.700607e-05
## 6140  Sandra Erwin                 table    48  716353 6.700607e-05
## 6141  Sandra Erwin               variety    48  716353 6.700607e-05
## 6142  Sandra Erwin                  wars    48  716353 6.700607e-05
## 6143  Sandra Erwin               winning    48  716353 6.700607e-05
## 6144  Sandra Erwin                 wrong    48  716353 6.700607e-05
## 6145    Jeff Foust                  adam    47 1573821 2.986362e-05
## 6146    Jeff Foust            assistance    47 1573821 2.986362e-05
## 6147    Jeff Foust            astronomer    47 1573821 2.986362e-05
## 6148    Jeff Foust            authorizes    47 1573821 2.986362e-05
## 6149    Jeff Foust                bank’s    47 1573821 2.986362e-05
## 6150    Jeff Foust                 beyer    47 1573821 2.986362e-05
## 6151    Jeff Foust                checks    47 1573821 2.986362e-05
## 6152    Jeff Foust             computers    47 1573821 2.986362e-05
## 6153    Jeff Foust           conclusions    47 1573821 2.986362e-05
## 6154    Jeff Foust              dalbello    47 1573821 2.986362e-05
## 6155    Jeff Foust                deemed    47 1573821 2.986362e-05
## 6156    Jeff Foust              deferred    47 1573821 2.986362e-05
## 6157    Jeff Foust         discretionary    47 1573821 2.986362e-05
## 6158    Jeff Foust                 draco    47 1573821 2.986362e-05
## 6159    Jeff Foust            expendable    47 1573821 2.986362e-05
## 6160    Jeff Foust              friction    47 1573821 2.986362e-05
## 6161    Jeff Foust               larmour    47 1573821 2.986362e-05
## 6162    Jeff Foust             literally    47 1573821 2.986362e-05
## 6163    Jeff Foust                 mepag    47 1573821 2.986362e-05
## 6164    Jeff Foust               mirrors    47 1573821 2.986362e-05
## 6165    Jeff Foust                 nauka    47 1573821 2.986362e-05
## 6166    Jeff Foust                  nice    47 1573821 2.986362e-05
## 6167    Jeff Foust              notional    47 1573821 2.986362e-05
## 6168    Jeff Foust              offshore    47 1573821 2.986362e-05
## 6169    Jeff Foust                  ostp    47 1573821 2.986362e-05
## 6170    Jeff Foust             peninsula    47 1573821 2.986362e-05
## 6171    Jeff Foust                 plume    47 1573821 2.986362e-05
## 6172    Jeff Foust            postponing    47 1573821 2.986362e-05
## 6173    Jeff Foust           predictions    47 1573821 2.986362e-05
## 6174    Jeff Foust              report’s    47 1573821 2.986362e-05
## 6175    Jeff Foust                rising    47 1573821 2.986362e-05
## 6176    Jeff Foust                  rose    47 1573821 2.986362e-05
## 6177    Jeff Foust            rutherford    47 1573821 2.986362e-05
## 6178    Jeff Foust              sections    47 1573821 2.986362e-05
## 6179    Jeff Foust                  sens    47 1573821 2.986362e-05
## 6180    Jeff Foust            speculated    47 1573821 2.986362e-05
## 6181    Jeff Foust            struggling    47 1573821 2.986362e-05
## 6182    Jeff Foust             suffering    47 1573821 2.986362e-05
## 6183    Jeff Foust               takeoff    47 1573821 2.986362e-05
## 6184    Jeff Foust              taxpayer    47 1573821 2.986362e-05
## 6185    Jeff Foust                 tenth    47 1573821 2.986362e-05
## 6186    Jeff Foust               terrain    47 1573821 2.986362e-05
## 6187    Jeff Foust              tiangong    47 1573821 2.986362e-05
## 6188    Jeff Foust                  ties    47 1573821 2.986362e-05
## 6189    Jeff Foust              updating    47 1573821 2.986362e-05
## 6190    Jeff Foust                verify    47 1573821 2.986362e-05
## 6191    Jeff Foust                vessel    47 1573821 2.986362e-05
## 6192    Jeff Foust             vostochny    47 1573821 2.986362e-05
## 6193    Jeff Foust                wilson    47 1573821 2.986362e-05
## 6194    Jeff Foust             zealand’s    47 1573821 2.986362e-05
## 6195  Sandra Erwin             addressed    47  716353 6.561011e-05
## 6196  Sandra Erwin            alliance’s    47  716353 6.561011e-05
## 6197  Sandra Erwin              analyzed    47  716353 6.561011e-05
## 6198  Sandra Erwin             coalition    47  716353 6.561011e-05
## 6199  Sandra Erwin            congestion    47  716353 6.561011e-05
## 6200  Sandra Erwin            consistent    47  716353 6.561011e-05
## 6201  Sandra Erwin                  copy    47  716353 6.561011e-05
## 6202  Sandra Erwin                   dan    47  716353 6.561011e-05
## 6203  Sandra Erwin              defenses    47  716353 6.561011e-05
## 6204  Sandra Erwin             designing    47  716353 6.561011e-05
## 6205  Sandra Erwin               diverse    47  716353 6.561011e-05
## 6206  Sandra Erwin                   faa    47  716353 6.561011e-05
## 6207  Sandra Erwin              gauthier    47  716353 6.561011e-05
## 6208  Sandra Erwin            interfaces    47  716353 6.561011e-05
## 6209  Sandra Erwin                   joe    47  716353 6.561011e-05
## 6210  Sandra Erwin                 morin    47  716353 6.561011e-05
## 6211  Sandra Erwin                 obama    47  716353 6.561011e-05
## 6212  Sandra Erwin              physical    47  716353 6.561011e-05
## 6213  Sandra Erwin            positioned    47  716353 6.561011e-05
## 6214  Sandra Erwin              practice    47  716353 6.561011e-05
## 6215  Sandra Erwin               quantum    47  716353 6.561011e-05
## 6216  Sandra Erwin                radios    47  716353 6.561011e-05
## 6217  Sandra Erwin            relativity    47  716353 6.561011e-05
## 6218  Sandra Erwin            republican    47  716353 6.561011e-05
## 6219  Sandra Erwin               richard    47  716353 6.561011e-05
## 6220  Sandra Erwin              segments    47  716353 6.561011e-05
## 6221  Sandra Erwin             service’s    47  716353 6.561011e-05
## 6222  Sandra Erwin                  ship    47  716353 6.561011e-05
## 6223  Sandra Erwin                   ssl    47  716353 6.561011e-05
## 6224  Sandra Erwin                 talks    47  716353 6.561011e-05
## 6225  Sandra Erwin              threaten    47  716353 6.561011e-05
## 6226  Sandra Erwin                wasn’t    47  716353 6.561011e-05
## 6227    Jeff Foust             accepting    46 1573821 2.922823e-05
## 6228    Jeff Foust            advantages    46 1573821 2.922823e-05
## 6229    Jeff Foust                ansari    46 1573821 2.922823e-05
## 6230    Jeff Foust            artificial    46 1573821 2.922823e-05
## 6231    Jeff Foust            attendance    46 1573821 2.922823e-05
## 6232    Jeff Foust               augment    46 1573821 2.922823e-05
## 6233    Jeff Foust                  b330    46 1573821 2.922823e-05
## 6234    Jeff Foust                 boost    46 1573821 2.922823e-05
## 6235    Jeff Foust                breach    46 1573821 2.922823e-05
## 6236    Jeff Foust               caltech    46 1573821 2.922823e-05
## 6237    Jeff Foust           collaborate    46 1573821 2.922823e-05
## 6238    Jeff Foust            combustion    46 1573821 2.922823e-05
## 6239    Jeff Foust              concrete    46 1573821 2.922823e-05
## 6240    Jeff Foust             considers    46 1573821 2.922823e-05
## 6241    Jeff Foust                copuos    46 1573821 2.922823e-05
## 6242    Jeff Foust               coupled    46 1573821 2.922823e-05
## 6243    Jeff Foust                depart    46 1573821 2.922823e-05
## 6244    Jeff Foust             describes    46 1573821 2.922823e-05
## 6245    Jeff Foust              discover    46 1573821 2.922823e-05
## 6246    Jeff Foust             economics    46 1573821 2.922823e-05
## 6247    Jeff Foust                entity    46 1573821 2.922823e-05
## 6248    Jeff Foust              envelope    46 1573821 2.922823e-05
## 6249    Jeff Foust                errors    46 1573821 2.922823e-05
## 6250    Jeff Foust                exists    46 1573821 2.922823e-05
## 6251    Jeff Foust            expedition    46 1573821 2.922823e-05
## 6252    Jeff Foust              exposure    46 1573821 2.922823e-05
## 6253    Jeff Foust                 fcc’s    46 1573821 2.922823e-05
## 6254    Jeff Foust                  grew    46 1573821 2.922823e-05
## 6255    Jeff Foust               heading    46 1573821 2.922823e-05
## 6256    Jeff Foust               heavily    46 1573821 2.922823e-05
## 6257    Jeff Foust                 ispcs    46 1573821 2.922823e-05
## 6258    Jeff Foust                  jean    46 1573821 2.922823e-05
## 6259    Jeff Foust             mandatory    46 1573821 2.922823e-05
## 6260    Jeff Foust            membership    46 1573821 2.922823e-05
## 6261    Jeff Foust               mercury    46 1573821 2.922823e-05
## 6262    Jeff Foust                    ml    46 1573821 2.922823e-05
## 6263    Jeff Foust                  node    46 1573821 2.922823e-05
## 6264    Jeff Foust             orbital’s    46 1573821 2.922823e-05
## 6265    Jeff Foust                  owns    46 1573821 2.922823e-05
## 6266    Jeff Foust           permanently    46 1573821 2.922823e-05
## 6267    Jeff Foust                  pipe    46 1573821 2.922823e-05
## 6268    Jeff Foust              produces    46 1573821 2.922823e-05
## 6269    Jeff Foust         profitability    46 1573821 2.922823e-05
## 6270    Jeff Foust               reaches    46 1573821 2.922823e-05
## 6271    Jeff Foust         restructuring    46 1573821 2.922823e-05
## 6272    Jeff Foust                   spx    46 1573821 2.922823e-05
## 6273    Jeff Foust          stratosphere    46 1573821 2.922823e-05
## 6274    Jeff Foust              strength    46 1573821 2.922823e-05
## 6275    Jeff Foust           transparent    46 1573821 2.922823e-05
## 6276    Jeff Foust            turnaround    46 1573821 2.922823e-05
## 6277    Jeff Foust         uncertainties    46 1573821 2.922823e-05
## 6278    Jeff Foust               utilize    46 1573821 2.922823e-05
## 6279    Jeff Foust                    xs    46 1573821 2.922823e-05
## 6280  Sandra Erwin                 adapt    46  716353 6.421415e-05
## 6281  Sandra Erwin            astroscale    46  716353 6.421415e-05
## 6282  Sandra Erwin          augmentation    46  716353 6.421415e-05
## 6283  Sandra Erwin             authorize    46  716353 6.421415e-05
## 6284  Sandra Erwin              autonomy    46  716353 6.421415e-05
## 6285  Sandra Erwin                claims    46  716353 6.421415e-05
## 6286  Sandra Erwin           collaborate    46  716353 6.421415e-05
## 6287  Sandra Erwin          collectively    46  716353 6.421415e-05
## 6288  Sandra Erwin            contribute    46  716353 6.421415e-05
## 6289  Sandra Erwin                denied    46  716353 6.421415e-05
## 6290  Sandra Erwin                donald    46  716353 6.421415e-05
## 6291  Sandra Erwin               dynamic    46  716353 6.421415e-05
## 6292  Sandra Erwin                   egs    46  716353 6.421415e-05
## 6293  Sandra Erwin                evolve    46  716353 6.421415e-05
## 6294  Sandra Erwin             expansion    46  716353 6.421415e-05
## 6295  Sandra Erwin                 extra    46  716353 6.421415e-05
## 6296  Sandra Erwin               focuses    46  716353 6.421415e-05
## 6297  Sandra Erwin                  foot    46  716353 6.421415e-05
## 6298  Sandra Erwin                 happy    46  716353 6.421415e-05
## 6299  Sandra Erwin                health    46  716353 6.421415e-05
## 6300  Sandra Erwin        implementation    46  716353 6.421415e-05
## 6301  Sandra Erwin              inserted    46  716353 6.421415e-05
## 6302  Sandra Erwin               joining    46  716353 6.421415e-05
## 6303  Sandra Erwin               kinetic    46  716353 6.421415e-05
## 6304  Sandra Erwin              launcher    46  716353 6.421415e-05
## 6305  Sandra Erwin             launchers    46  716353 6.421415e-05
## 6306  Sandra Erwin                  lean    46  716353 6.421415e-05
## 6307  Sandra Erwin               manages    46  716353 6.421415e-05
## 6308  Sandra Erwin               onboard    46  716353 6.421415e-05
## 6309  Sandra Erwin          presidential    46  716353 6.421415e-05
## 6310  Sandra Erwin                 press    46  716353 6.421415e-05
## 6311  Sandra Erwin                 prior    46  716353 6.421415e-05
## 6312  Sandra Erwin               remarks    46  716353 6.421415e-05
## 6313  Sandra Erwin             resistant    46  716353 6.421415e-05
## 6314  Sandra Erwin                  road    46  716353 6.421415e-05
## 6315  Sandra Erwin                safely    46  716353 6.421415e-05
## 6316  Sandra Erwin                   san    46  716353 6.421415e-05
## 6317  Sandra Erwin              scenario    46  716353 6.421415e-05
## 6318  Sandra Erwin                square    46  716353 6.421415e-05
## 6319  Sandra Erwin             stability    46  716353 6.421415e-05
## 6320  Sandra Erwin            statements    46  716353 6.421415e-05
## 6321  Sandra Erwin              stratcom    46  716353 6.421415e-05
## 6322  Sandra Erwin               survive    46  716353 6.421415e-05
## 6323  Sandra Erwin             testimony    46  716353 6.421415e-05
## 6324  Sandra Erwin               today’s    46  716353 6.421415e-05
## 6325  Sandra Erwin            tremendous    46  716353 6.421415e-05
## 6326  Sandra Erwin               voyager    46  716353 6.421415e-05
## 6327    Jeff Foust                    3u    45 1573821 2.859283e-05
## 6328    Jeff Foust                  50th    45 1573821 2.859283e-05
## 6329    Jeff Foust             accidents    45 1573821 2.859283e-05
## 6330    Jeff Foust           aerodynamic    45 1573821 2.859283e-05
## 6331    Jeff Foust                   ars    45 1573821 2.859283e-05
## 6332    Jeff Foust               banerdt    45 1573821 2.859283e-05
## 6333    Jeff Foust              canada’s    45 1573821 2.859283e-05
## 6334    Jeff Foust       characteristics    45 1573821 2.859283e-05
## 6335    Jeff Foust            complained    45 1573821 2.859283e-05
## 6336    Jeff Foust              credited    45 1573821 2.859283e-05
## 6337    Jeff Foust               crowded    45 1573821 2.859283e-05
## 6338    Jeff Foust                 death    45 1573821 2.859283e-05
## 6339    Jeff Foust                deeply    45 1573821 2.859283e-05
## 6340    Jeff Foust             departing    45 1573821 2.859283e-05
## 6341    Jeff Foust           distributed    45 1573821 2.859283e-05
## 6342    Jeff Foust                   don    45 1573821 2.859283e-05
## 6343    Jeff Foust                 drake    45 1573821 2.859283e-05
## 6344    Jeff Foust              dropping    45 1573821 2.859283e-05
## 6345    Jeff Foust          efficiencies    45 1573821 2.859283e-05
## 6346    Jeff Foust             evaluated    45 1573821 2.859283e-05
## 6347    Jeff Foust              examples    45 1573821 2.859283e-05
## 6348    Jeff Foust                  exit    45 1573821 2.859283e-05
## 6349    Jeff Foust               expired    45 1573821 2.859283e-05
## 6350    Jeff Foust            feathering    45 1573821 2.859283e-05
## 6351    Jeff Foust              finished    45 1573821 2.859283e-05
## 6352    Jeff Foust             functions    45 1573821 2.859283e-05
## 6353    Jeff Foust        groundbreaking    45 1573821 2.859283e-05
## 6354    Jeff Foust                 guess    45 1573821 2.859283e-05
## 6355    Jeff Foust                   ils    45 1573821 2.859283e-05
## 6356    Jeff Foust       indemnification    45 1573821 2.859283e-05
## 6357    Jeff Foust               letters    45 1573821 2.859283e-05
## 6358    Jeff Foust                  mann    45 1573821 2.859283e-05
## 6359    Jeff Foust                moscow    45 1573821 2.859283e-05
## 6360    Jeff Foust                 ninth    45 1573821 2.859283e-05
## 6361    Jeff Foust              nominate    45 1573821 2.859283e-05
## 6362    Jeff Foust                oceans    45 1573821 2.859283e-05
## 6363    Jeff Foust                   oil    45 1573821 2.859283e-05
## 6364    Jeff Foust            parliament    45 1573821 2.859283e-05
## 6365    Jeff Foust              patricia    45 1573821 2.859283e-05
## 6366    Jeff Foust               poynter    45 1573821 2.859283e-05
## 6367    Jeff Foust             rationale    45 1573821 2.859283e-05
## 6368    Jeff Foust             residents    45 1573821 2.859283e-05
## 6369    Jeff Foust                reveal    45 1573821 2.859283e-05
## 6370    Jeff Foust                  rsgs    45 1573821 2.859283e-05
## 6371    Jeff Foust                 sands    45 1573821 2.859283e-05
## 6372    Jeff Foust                 smart    45 1573821 2.859283e-05
## 6373    Jeff Foust            strengthen    45 1573821 2.859283e-05
## 6374    Jeff Foust               sustain    45 1573821 2.859283e-05
## 6375    Jeff Foust                team’s    45 1573821 2.859283e-05
## 6376    Jeff Foust              technica    45 1573821 2.859283e-05
## 6377    Jeff Foust              terminal    45 1573821 2.859283e-05
## 6378    Jeff Foust                timely    45 1573821 2.859283e-05
## 6379    Jeff Foust               trigger    45 1573821 2.859283e-05
## 6380    Jeff Foust                  tugs    45 1573821 2.859283e-05
## 6381    Jeff Foust                   von    45 1573821 2.859283e-05
## 6382  Sandra Erwin        administrative    45  716353 6.281819e-05
## 6383  Sandra Erwin                 adopt    45  716353 6.281819e-05
## 6384  Sandra Erwin                 argue    45  716353 6.281819e-05
## 6385  Sandra Erwin              campaign    45  716353 6.281819e-05
## 6386  Sandra Erwin                clouds    45  716353 6.281819e-05
## 6387  Sandra Erwin               collins    45  716353 6.281819e-05
## 6388  Sandra Erwin                comply    45  716353 6.281819e-05
## 6389  Sandra Erwin            developers    45  716353 6.281819e-05
## 6390  Sandra Erwin                  draw    45  716353 6.281819e-05
## 6391  Sandra Erwin             encourage    45  716353 6.281819e-05
## 6392  Sandra Erwin       experimentation    45  716353 6.281819e-05
## 6393  Sandra Erwin               factors    45  716353 6.281819e-05
## 6394  Sandra Erwin               finally    45  716353 6.281819e-05
## 6395  Sandra Erwin                 gao’s    45  716353 6.281819e-05
## 6396  Sandra Erwin      interoperability    45  716353 6.281819e-05
## 6397  Sandra Erwin               invited    45  716353 6.281819e-05
## 6398  Sandra Erwin                   lay    45  716353 6.281819e-05
## 6399  Sandra Erwin                 louis    45  716353 6.281819e-05
## 6400  Sandra Erwin          manufactured    45  716353 6.281819e-05
## 6401  Sandra Erwin                   map    45  716353 6.281819e-05
## 6402  Sandra Erwin                milley    45  716353 6.281819e-05
## 6403  Sandra Erwin                moment    45  716353 6.281819e-05
## 6404  Sandra Erwin            organizing    45  716353 6.281819e-05
## 6405  Sandra Erwin            partnering    45  716353 6.281819e-05
## 6406  Sandra Erwin                pounds    45  716353 6.281819e-05
## 6407  Sandra Erwin             promotion    45  716353 6.281819e-05
## 6408  Sandra Erwin         qualification    45  716353 6.281819e-05
## 6409  Sandra Erwin                   rdt    45  716353 6.281819e-05
## 6410  Sandra Erwin              resource    45  716353 6.281819e-05
## 6411  Sandra Erwin             scenarios    45  716353 6.281819e-05
## 6412  Sandra Erwin             separated    45  716353 6.281819e-05
## 6413  Sandra Erwin               smith’s    45  716353 6.281819e-05
## 6414  Sandra Erwin           substantial    45  716353 6.281819e-05
## 6415  Sandra Erwin                  ties    45  716353 6.281819e-05
## 6416  Sandra Erwin                 trend    45  716353 6.281819e-05
## 6417  Sandra Erwin               western    45  716353 6.281819e-05
## 6418    Jeff Foust              absolute    44 1573821 2.795744e-05
## 6419    Jeff Foust                    ad    44 1573821 2.795744e-05
## 6420    Jeff Foust              adequate    44 1573821 2.795744e-05
## 6421    Jeff Foust                 agile    44 1573821 2.795744e-05
## 6422    Jeff Foust                   aid    44 1573821 2.795744e-05
## 6423    Jeff Foust                  anna    44 1573821 2.795744e-05
## 6424    Jeff Foust                apogee    44 1573821 2.795744e-05
## 6425    Jeff Foust            apparently    44 1573821 2.795744e-05
## 6426    Jeff Foust               atomics    44 1573821 2.795744e-05
## 6427    Jeff Foust                austin    44 1573821 2.795744e-05
## 6428    Jeff Foust                   bbc    44 1573821 2.795744e-05
## 6429    Jeff Foust                  book    44 1573821 2.795744e-05
## 6430    Jeff Foust                bubble    44 1573821 2.795744e-05
## 6431    Jeff Foust                 chart    44 1573821 2.795744e-05
## 6432    Jeff Foust            continuous    44 1573821 2.795744e-05
## 6433    Jeff Foust             converted    44 1573821 2.795744e-05
## 6434    Jeff Foust              convince    44 1573821 2.795744e-05
## 6435    Jeff Foust           coordinated    44 1573821 2.795744e-05
## 6436    Jeff Foust               crucial    44 1573821 2.795744e-05
## 6437    Jeff Foust          demonstrator    44 1573821 2.795744e-05
## 6438    Jeff Foust          entrepreneur    44 1573821 2.795744e-05
## 6439    Jeff Foust         entrepreneurs    44 1573821 2.795744e-05
## 6440    Jeff Foust                expert    44 1573821 2.795744e-05
## 6441    Jeff Foust               fashion    44 1573821 2.795744e-05
## 6442    Jeff Foust                  fins    44 1573821 2.795744e-05
## 6443    Jeff Foust               fitting    44 1573821 2.795744e-05
## 6444    Jeff Foust                garver    44 1573821 2.795744e-05
## 6445    Jeff Foust          geopolitical    44 1573821 2.795744e-05
## 6446    Jeff Foust                 grows    44 1573821 2.795744e-05
## 6447    Jeff Foust              habitats    44 1573821 2.795744e-05
## 6448    Jeff Foust             impending    44 1573821 2.795744e-05
## 6449    Jeff Foust            industry’s    44 1573821 2.795744e-05
## 6450    Jeff Foust                kamala    44 1573821 2.795744e-05
## 6451    Jeff Foust               lengthy    44 1573821 2.795744e-05
## 6452    Jeff Foust               matters    44 1573821 2.795744e-05
## 6453    Jeff Foust               modeled    44 1573821 2.795744e-05
## 6454    Jeff Foust              nominees    44 1573821 2.795744e-05
## 6455    Jeff Foust                nozzle    44 1573821 2.795744e-05
## 6456    Jeff Foust           obligations    44 1573821 2.795744e-05
## 6457    Jeff Foust             obstacles    44 1573821 2.795744e-05
## 6458    Jeff Foust               obvious    44 1573821 2.795744e-05
## 6459    Jeff Foust               patrick    44 1573821 2.795744e-05
## 6460    Jeff Foust               phoenix    44 1573821 2.795744e-05
## 6461    Jeff Foust              politics    44 1573821 2.795744e-05
## 6462    Jeff Foust                  read    44 1573821 2.795744e-05
## 6463    Jeff Foust                  rl10    44 1573821 2.795744e-05
## 6464    Jeff Foust              robinson    44 1573821 2.795744e-05
## 6465    Jeff Foust              robotics    44 1573821 2.795744e-05
## 6466    Jeff Foust        simultaneously    44 1573821 2.795744e-05
## 6467    Jeff Foust                 store    44 1573821 2.795744e-05
## 6468    Jeff Foust         transitioning    44 1573821 2.795744e-05
## 6469    Jeff Foust                ultima    44 1573821 2.795744e-05
## 6470    Jeff Foust         unpressurized    44 1573821 2.795744e-05
## 6471    Jeff Foust                  vadr    44 1573821 2.795744e-05
## 6472    Jeff Foust            validation    44 1573821 2.795744e-05
## 6473    Jeff Foust               weighed    44 1573821 2.795744e-05
## 6474    Jeff Foust             wonderful    44 1573821 2.795744e-05
## 6475  Sandra Erwin            aggression    44  716353 6.142223e-05
## 6476  Sandra Erwin                aren’t    44  716353 6.142223e-05
## 6477  Sandra Erwin                 brand    44  716353 6.142223e-05
## 6478  Sandra Erwin               carrier    44  716353 6.142223e-05
## 6479  Sandra Erwin                closed    44  716353 6.142223e-05
## 6480  Sandra Erwin                desire    44  716353 6.142223e-05
## 6481  Sandra Erwin             disclosed    44  716353 6.142223e-05
## 6482  Sandra Erwin               embrace    44  716353 6.142223e-05
## 6483  Sandra Erwin              enabling    44  716353 6.142223e-05
## 6484  Sandra Erwin                 fname    44  716353 6.142223e-05
## 6485  Sandra Erwin                france    44  716353 6.142223e-05
## 6486  Sandra Erwin            guidelines    44  716353 6.142223e-05
## 6487  Sandra Erwin                  indo    44  716353 6.142223e-05
## 6488  Sandra Erwin              innovate    44  716353 6.142223e-05
## 6489  Sandra Erwin         installations    44  716353 6.142223e-05
## 6490  Sandra Erwin           interagency    44  716353 6.142223e-05
## 6491  Sandra Erwin                jquery    44  716353 6.142223e-05
## 6492  Sandra Erwin     jquery.noconflict    44  716353 6.142223e-05
## 6493  Sandra Erwin                 lname    44  716353 6.142223e-05
## 6494  Sandra Erwin                  lots    44  716353 6.142223e-05
## 6495  Sandra Erwin                 marks    44  716353 6.142223e-05
## 6496  Sandra Erwin                   mcj    44  716353 6.142223e-05
## 6497  Sandra Erwin             milestone    44  716353 6.142223e-05
## 6498  Sandra Erwin             minuteman    44  716353 6.142223e-05
## 6499  Sandra Erwin                 mitre    44  716353 6.142223e-05
## 6500  Sandra Erwin                  muos    44  716353 6.142223e-05
## 6501  Sandra Erwin               outcome    44  716353 6.142223e-05
## 6502  Sandra Erwin                  peer    44  716353 6.142223e-05
## 6503  Sandra Erwin                   pit    44  716353 6.142223e-05
## 6504  Sandra Erwin              positive    44  716353 6.142223e-05
## 6505  Sandra Erwin              receiver    44  716353 6.142223e-05
## 6506  Sandra Erwin                reform    44  716353 6.142223e-05
## 6507  Sandra Erwin                rolled    44  716353 6.142223e-05
## 6508  Sandra Erwin                simple    44  716353 6.142223e-05
## 6509  Sandra Erwin                    st    44  716353 6.142223e-05
## 6510  Sandra Erwin               stopher    44  716353 6.142223e-05
## 6511  Sandra Erwin             surprised    44  716353 6.142223e-05
## 6512  Sandra Erwin           sustainable    44  716353 6.142223e-05
## 6513  Sandra Erwin                   var    44  716353 6.142223e-05
## 6514  Sandra Erwin                  vast    44  716353 6.142223e-05
## 6515  Sandra Erwin         window.fnames    44  716353 6.142223e-05
## 6516  Sandra Erwin         window.ftypes    44  716353 6.142223e-05
## 6517    Jeff Foust                   37b    43 1573821 2.732204e-05
## 6518    Jeff Foust              academia    43 1573821 2.732204e-05
## 6519    Jeff Foust        accommodations    43 1573821 2.732204e-05
## 6520    Jeff Foust              adjacent    43 1573821 2.732204e-05
## 6521    Jeff Foust             authorize    43 1573821 2.732204e-05
## 6522    Jeff Foust                beames    43 1573821 2.732204e-05
## 6523    Jeff Foust            cancelling    43 1573821 2.732204e-05
## 6524    Jeff Foust               cluster    43 1573821 2.732204e-05
## 6525    Jeff Foust            consulting    43 1573821 2.732204e-05
## 6526    Jeff Foust             contained    43 1573821 2.732204e-05
## 6527    Jeff Foust             declining    43 1573821 2.732204e-05
## 6528    Jeff Foust            deployable    43 1573821 2.732204e-05
## 6529    Jeff Foust               deposit    43 1573821 2.732204e-05
## 6530    Jeff Foust               dioxide    43 1573821 2.732204e-05
## 6531    Jeff Foust          directorates    43 1573821 2.732204e-05
## 6532    Jeff Foust               disease    43 1573821 2.732204e-05
## 6533    Jeff Foust            disruptive    43 1573821 2.732204e-05
## 6534    Jeff Foust           exclusively    43 1573821 2.732204e-05
## 6535    Jeff Foust               filling    43 1573821 2.732204e-05
## 6536    Jeff Foust               freedom    43 1573821 2.732204e-05
## 6537    Jeff Foust                   fts    43 1573821 2.732204e-05
## 6538    Jeff Foust               geocarb    43 1573821 2.732204e-05
## 6539    Jeff Foust              grateful    43 1573821 2.732204e-05
## 6540    Jeff Foust                hadn’t    43 1573821 2.732204e-05
## 6541    Jeff Foust                harbor    43 1573821 2.732204e-05
## 6542    Jeff Foust                import    43 1573821 2.732204e-05
## 6543    Jeff Foust                lacked    43 1573821 2.732204e-05
## 6544    Jeff Foust               langley    43 1573821 2.732204e-05
## 6545    Jeff Foust                lasted    43 1573821 2.732204e-05
## 6546    Jeff Foust                 leads    43 1573821 2.732204e-05
## 6547    Jeff Foust             liability    43 1573821 2.732204e-05
## 6548    Jeff Foust                 lists    43 1573821 2.732204e-05
## 6549    Jeff Foust                mapper    43 1573821 2.732204e-05
## 6550    Jeff Foust              modeling    43 1573821 2.732204e-05
## 6551    Jeff Foust               modular    43 1573821 2.732204e-05
## 6552    Jeff Foust               overlap    43 1573821 2.732204e-05
## 6553    Jeff Foust             passenger    43 1573821 2.732204e-05
## 6554    Jeff Foust             plutonium    43 1573821 2.732204e-05
## 6555    Jeff Foust            profitable    43 1573821 2.732204e-05
## 6556    Jeff Foust             protected    43 1573821 2.732204e-05
## 6557    Jeff Foust             protocols    43 1573821 2.732204e-05
## 6558    Jeff Foust               qualify    43 1573821 2.732204e-05
## 6559    Jeff Foust                quorum    43 1573821 2.732204e-05
## 6560    Jeff Foust               records    43 1573821 2.732204e-05
## 6561    Jeff Foust            recovering    43 1573821 2.732204e-05
## 6562    Jeff Foust              repaired    43 1573821 2.732204e-05
## 6563    Jeff Foust                ruling    43 1573821 2.732204e-05
## 6564    Jeff Foust               solicit    43 1573821 2.732204e-05
## 6565    Jeff Foust              stéphane    43 1573821 2.732204e-05
## 6566    Jeff Foust              suitable    43 1573821 2.732204e-05
## 6567    Jeff Foust                  swot    43 1573821 2.732204e-05
## 6568    Jeff Foust             teamindus    43 1573821 2.732204e-05
## 6569    Jeff Foust               telling    43 1573821 2.732204e-05
## 6570    Jeff Foust                  text    43 1573821 2.732204e-05
## 6571    Jeff Foust               toronto    43 1573821 2.732204e-05
## 6572    Jeff Foust                 usual    43 1573821 2.732204e-05
## 6573    Jeff Foust             valuation    43 1573821 2.732204e-05
## 6574    Jeff Foust              violated    43 1573821 2.732204e-05
## 6575    Jeff Foust                  warn    43 1573821 2.732204e-05
## 6576    Jeff Foust                 wayne    43 1573821 2.732204e-05
## 6577    Jeff Foust           willingness    43 1573821 2.732204e-05
## 6578  Sandra Erwin                alaska    43  716353 6.002627e-05
## 6579  Sandra Erwin                 align    43  716353 6.002627e-05
## 6580  Sandra Erwin           assessments    43  716353 6.002627e-05
## 6581  Sandra Erwin          autonomously    43  716353 6.002627e-05
## 6582  Sandra Erwin              baseline    43  716353 6.002627e-05
## 6583  Sandra Erwin                  bell    43  716353 6.002627e-05
## 6584  Sandra Erwin               biden’s    43  716353 6.002627e-05
## 6585  Sandra Erwin               broadly    43  716353 6.002627e-05
## 6586  Sandra Erwin                chains    43  716353 6.002627e-05
## 6587  Sandra Erwin             confusion    43  716353 6.002627e-05
## 6588  Sandra Erwin              electron    43  716353 6.002627e-05
## 6589  Sandra Erwin                 equal    43  716353 6.002627e-05
## 6590  Sandra Erwin                equity    43  716353 6.002627e-05
## 6591  Sandra Erwin               exploit    43  716353 6.002627e-05
## 6592  Sandra Erwin            facilitate    43  716353 6.002627e-05
## 6593  Sandra Erwin              figuring    43  716353 6.002627e-05
## 6594  Sandra Erwin                 fresh    43  716353 6.002627e-05
## 6595  Sandra Erwin                 grown    43  716353 6.002627e-05
## 6596  Sandra Erwin               hosting    43  716353 6.002627e-05
## 6597  Sandra Erwin             isakowitz    43  716353 6.002627e-05
## 6598  Sandra Erwin               jointly    43  716353 6.002627e-05
## 6599  Sandra Erwin                   osp    43  716353 6.002627e-05
## 6600  Sandra Erwin                 posed    43  716353 6.002627e-05
## 6601  Sandra Erwin             reduction    43  716353 6.002627e-05
## 6602  Sandra Erwin               removed    43  716353 6.002627e-05
## 6603  Sandra Erwin            requesting    43  716353 6.002627e-05
## 6604  Sandra Erwin                  save    43  716353 6.002627e-05
## 6605  Sandra Erwin               serving    43  716353 6.002627e-05
## 6606  Sandra Erwin            spaceplane    43  716353 6.002627e-05
## 6607  Sandra Erwin            throughput    43  716353 6.002627e-05
## 6608  Sandra Erwin               updates    43  716353 6.002627e-05
## 6609  Sandra Erwin               worried    43  716353 6.002627e-05
## 6610    Jeff Foust             accounted    42 1573821 2.668664e-05
## 6611    Jeff Foust           advancement    42 1573821 2.668664e-05
## 6612    Jeff Foust             approving    42 1573821 2.668664e-05
## 6613    Jeff Foust               barbara    42 1573821 2.668664e-05
## 6614    Jeff Foust             blackwell    42 1573821 2.668664e-05
## 6615    Jeff Foust                 brand    42 1573821 2.668664e-05
## 6616    Jeff Foust                 brook    42 1573821 2.668664e-05
## 6617    Jeff Foust                 bunch    42 1573821 2.668664e-05
## 6618    Jeff Foust                bureau    42 1573821 2.668664e-05
## 6619    Jeff Foust                 cable    42 1573821 2.668664e-05
## 6620    Jeff Foust               collide    42 1573821 2.668664e-05
## 6621    Jeff Foust          competitions    42 1573821 2.668664e-05
## 6622    Jeff Foust               cooling    42 1573821 2.668664e-05
## 6623    Jeff Foust                   csa    42 1573821 2.668664e-05
## 6624    Jeff Foust               darpa’s    42 1573821 2.668664e-05
## 6625    Jeff Foust                 depot    42 1573821 2.668664e-05
## 6626    Jeff Foust            descending    42 1573821 2.668664e-05
## 6627    Jeff Foust             dismissed    42 1573821 2.668664e-05
## 6628    Jeff Foust                 dubai    42 1573821 2.668664e-05
## 6629    Jeff Foust                 falls    42 1573821 2.668664e-05
## 6630    Jeff Foust               germain    42 1573821 2.668664e-05
## 6631    Jeff Foust            governance    42 1573821 2.668664e-05
## 6632    Jeff Foust              governor    42 1573821 2.668664e-05
## 6633    Jeff Foust             grumman’s    42 1573821 2.668664e-05
## 6634    Jeff Foust              holdings    42 1573821 2.668664e-05
## 6635    Jeff Foust                ignite    42 1573821 2.668664e-05
## 6636    Jeff Foust          incorporates    42 1573821 2.668664e-05
## 6637    Jeff Foust              injuries    42 1573821 2.668664e-05
## 6638    Jeff Foust          installation    42 1573821 2.668664e-05
## 6639    Jeff Foust                   iot    42 1573821 2.668664e-05
## 6640    Jeff Foust             listening    42 1573821 2.668664e-05
## 6641    Jeff Foust              measured    42 1573821 2.668664e-05
## 6642    Jeff Foust            mechanical    42 1573821 2.668664e-05
## 6643    Jeff Foust                 minds    42 1573821 2.668664e-05
## 6644    Jeff Foust                  nova    42 1573821 2.668664e-05
## 6645    Jeff Foust              optimism    42 1573821 2.668664e-05
## 6646    Jeff Foust            organizers    42 1573821 2.668664e-05
## 6647    Jeff Foust            overseeing    42 1573821 2.668664e-05
## 6648    Jeff Foust               palazzo    42 1573821 2.668664e-05
## 6649    Jeff Foust            perlmutter    42 1573821 2.668664e-05
## 6650    Jeff Foust                photos    42 1573821 2.668664e-05
## 6651    Jeff Foust                  plum    42 1573821 2.668664e-05
## 6652    Jeff Foust           predecessor    42 1573821 2.668664e-05
## 6653    Jeff Foust               pressed    42 1573821 2.668664e-05
## 6654    Jeff Foust               quietly    42 1573821 2.668664e-05
## 6655    Jeff Foust            recognized    42 1573821 2.668664e-05
## 6656    Jeff Foust           redirection    42 1573821 2.668664e-05
## 6657    Jeff Foust             remainder    42 1573821 2.668664e-05
## 6658    Jeff Foust                   rsc    42 1573821 2.668664e-05
## 6659    Jeff Foust           shareholder    42 1573821 2.668664e-05
## 6660    Jeff Foust              shipment    42 1573821 2.668664e-05
## 6661    Jeff Foust              sponsors    42 1573821 2.668664e-05
## 6662    Jeff Foust                  spun    42 1573821 2.668664e-05
## 6663    Jeff Foust                steven    42 1573821 2.668664e-05
## 6664    Jeff Foust          streamlining    42 1573821 2.668664e-05
## 6665    Jeff Foust                strike    42 1573821 2.668664e-05
## 6666    Jeff Foust               totally    42 1573821 2.668664e-05
## 6667    Jeff Foust           unanimously    42 1573821 2.668664e-05
## 6668    Jeff Foust             voluntary    42 1573821 2.668664e-05
## 6669    Jeff Foust           wavelengths    42 1573821 2.668664e-05
## 6670    Jeff Foust                wicker    42 1573821 2.668664e-05
## 6671    Jeff Foust              withdraw    42 1573821 2.668664e-05
## 6672  Sandra Erwin              academic    42  716353 5.863031e-05
## 6673  Sandra Erwin           accelerated    42  716353 5.863031e-05
## 6674  Sandra Erwin               adopted    42  716353 5.863031e-05
## 6675  Sandra Erwin               advisor    42  716353 5.863031e-05
## 6676  Sandra Erwin             arlington    42  716353 5.863031e-05
## 6677  Sandra Erwin              branches    42  716353 5.863031e-05
## 6678  Sandra Erwin             broadcast    42  716353 5.863031e-05
## 6679  Sandra Erwin            candidates    42  716353 5.863031e-05
## 6680  Sandra Erwin                  cash    42  716353 5.863031e-05
## 6681  Sandra Erwin           consolidate    42  716353 5.863031e-05
## 6682  Sandra Erwin                degree    42  716353 5.863031e-05
## 6683  Sandra Erwin                 entry    42  716353 5.863031e-05
## 6684  Sandra Erwin             evaluated    42  716353 5.863031e-05
## 6685  Sandra Erwin                facing    42  716353 5.863031e-05
## 6686  Sandra Erwin               galileo    42  716353 5.863031e-05
## 6687  Sandra Erwin              generals    42  716353 5.863031e-05
## 6688  Sandra Erwin                hugely    42  716353 5.863031e-05
## 6689  Sandra Erwin                hughes    42  716353 5.863031e-05
## 6690  Sandra Erwin                  idiq    42  716353 5.863031e-05
## 6691  Sandra Erwin                  king    42  716353 5.863031e-05
## 6692  Sandra Erwin                 limit    42  716353 5.863031e-05
## 6693  Sandra Erwin              measures    42  716353 5.863031e-05
## 6694  Sandra Erwin                minute    42  716353 5.863031e-05
## 6695  Sandra Erwin                   mrv    42  716353 5.863031e-05
## 6696  Sandra Erwin          negotiations    42  716353 5.863031e-05
## 6697  Sandra Erwin              overseas    42  716353 5.863031e-05
## 6698  Sandra Erwin                  port    42  716353 5.863031e-05
## 6699  Sandra Erwin               precise    42  716353 5.863031e-05
## 6700  Sandra Erwin               pressed    42  716353 5.863031e-05
## 6701  Sandra Erwin             proposing    42  716353 5.863031e-05
## 6702  Sandra Erwin              purposes    42  716353 5.863031e-05
## 6703  Sandra Erwin             realistic    42  716353 5.863031e-05
## 6704  Sandra Erwin            recognized    42  716353 5.863031e-05
## 6705  Sandra Erwin            recognizes    42  716353 5.863031e-05
## 6706  Sandra Erwin               regular    42  716353 5.863031e-05
## 6707  Sandra Erwin               relying    42  716353 5.863031e-05
## 6708  Sandra Erwin                  rise    42  716353 5.863031e-05
## 6709  Sandra Erwin             schedules    42  716353 5.863031e-05
## 6710  Sandra Erwin                 seakr    42  716353 5.863031e-05
## 6711  Sandra Erwin               shuttle    42  716353 5.863031e-05
## 6712  Sandra Erwin             skeptical    42  716353 5.863031e-05
## 6713  Sandra Erwin              stepping    42  716353 5.863031e-05
## 6714  Sandra Erwin            structures    42  716353 5.863031e-05
## 6715  Sandra Erwin               they’ll    42  716353 5.863031e-05
## 6716  Sandra Erwin                tracks    42  716353 5.863031e-05
## 6717  Sandra Erwin               webinar    42  716353 5.863031e-05
## 6718    Jeff Foust               alsbury    41 1573821 2.605125e-05
## 6719    Jeff Foust               amended    41 1573821 2.605125e-05
## 6720    Jeff Foust             arguments    41 1573821 2.605125e-05
## 6721    Jeff Foust               axiom’s    41 1573821 2.605125e-05
## 6722    Jeff Foust                 bands    41 1573821 2.605125e-05
## 6723    Jeff Foust               bidding    41 1573821 2.605125e-05
## 6724    Jeff Foust                billed    41 1573821 2.605125e-05
## 6725    Jeff Foust                 booms    41 1573821 2.605125e-05
## 6726    Jeff Foust                 bound    41 1573821 2.605125e-05
## 6727    Jeff Foust              boundary    41 1573821 2.605125e-05
## 6728    Jeff Foust               briefed    41 1573821 2.605125e-05
## 6729    Jeff Foust                brooks    41 1573821 2.605125e-05
## 6730    Jeff Foust               caution    41 1573821 2.605125e-05
## 6731    Jeff Foust              chambers    41 1573821 2.605125e-05
## 6732    Jeff Foust               charter    41 1573821 2.605125e-05
## 6733    Jeff Foust                chosen    41 1573821 2.605125e-05
## 6734    Jeff Foust                closes    41 1573821 2.605125e-05
## 6735    Jeff Foust              columbia    41 1573821 2.605125e-05
## 6736    Jeff Foust             commented    41 1573821 2.605125e-05
## 6737    Jeff Foust             comparing    41 1573821 2.605125e-05
## 6738    Jeff Foust             completes    41 1573821 2.605125e-05
## 6739    Jeff Foust             contacted    41 1573821 2.605125e-05
## 6740    Jeff Foust             container    41 1573821 2.605125e-05
## 6741    Jeff Foust                 count    41 1573821 2.605125e-05
## 6742    Jeff Foust              creative    41 1573821 2.605125e-05
## 6743    Jeff Foust           crewmembers    41 1573821 2.605125e-05
## 6744    Jeff Foust                  dead    41 1573821 2.605125e-05
## 6745    Jeff Foust               debates    41 1573821 2.605125e-05
## 6746    Jeff Foust               density    41 1573821 2.605125e-05
## 6747    Jeff Foust              describe    41 1573821 2.605125e-05
## 6748    Jeff Foust               devices    41 1573821 2.605125e-05
## 6749    Jeff Foust              dramatic    41 1573821 2.605125e-05
## 6750    Jeff Foust                 drill    41 1573821 2.605125e-05
## 6751    Jeff Foust               endorse    41 1573821 2.605125e-05
## 6752    Jeff Foust              engine’s    41 1573821 2.605125e-05
## 6753    Jeff Foust          environments    41 1573821 2.605125e-05
## 6754    Jeff Foust              exploded    41 1573821 2.605125e-05
## 6755    Jeff Foust           frustration    41 1573821 2.605125e-05
## 6756    Jeff Foust               gardner    41 1573821 2.605125e-05
## 6757    Jeff Foust                 guard    41 1573821 2.605125e-05
## 6758    Jeff Foust               hazards    41 1573821 2.605125e-05
## 6759    Jeff Foust                 heart    41 1573821 2.605125e-05
## 6760    Jeff Foust               heavier    41 1573821 2.605125e-05
## 6761    Jeff Foust                hollen    41 1573821 2.605125e-05
## 6762    Jeff Foust             hydraulic    41 1573821 2.605125e-05
## 6763    Jeff Foust             inclusion    41 1573821 2.605125e-05
## 6764    Jeff Foust               inspire    41 1573821 2.605125e-05
## 6765    Jeff Foust               issuing    41 1573821 2.605125e-05
## 6766    Jeff Foust            jeff_foust    41 1573821 2.605125e-05
## 6767    Jeff Foust               keynote    41 1573821 2.605125e-05
## 6768    Jeff Foust               leasing    41 1573821 2.605125e-05
## 6769    Jeff Foust                   lro    41 1573821 2.605125e-05
## 6770    Jeff Foust             modifying    41 1573821 2.605125e-05
## 6771    Jeff Foust                 nappi    41 1573821 2.605125e-05
## 6772    Jeff Foust                 naval    41 1573821 2.605125e-05
## 6773    Jeff Foust              office’s    41 1573821 2.605125e-05
## 6774    Jeff Foust            officially    41 1573821 2.605125e-05
## 6775    Jeff Foust              optimize    41 1573821 2.605125e-05
## 6776    Jeff Foust            passengers    41 1573821 2.605125e-05
## 6777    Jeff Foust                  poll    41 1573821 2.605125e-05
## 6778    Jeff Foust              portions    41 1573821 2.605125e-05
## 6779    Jeff Foust                 quiet    41 1573821 2.605125e-05
## 6780    Jeff Foust            regulators    41 1573821 2.605125e-05
## 6781    Jeff Foust                 safer    41 1573821 2.605125e-05
## 6782    Jeff Foust                severe    41 1573821 2.605125e-05
## 6783    Jeff Foust           signatories    41 1573821 2.605125e-05
## 6784    Jeff Foust               starlab    41 1573821 2.605125e-05
## 6785    Jeff Foust            supporters    41 1573821 2.605125e-05
## 6786    Jeff Foust              surfaces    41 1573821 2.605125e-05
## 6787    Jeff Foust               swedish    41 1573821 2.605125e-05
## 6788    Jeff Foust                switch    41 1573821 2.605125e-05
## 6789    Jeff Foust              telework    41 1573821 2.605125e-05
## 6790    Jeff Foust               testbed    41 1573821 2.605125e-05
## 6791    Jeff Foust               thanked    41 1573821 2.605125e-05
## 6792    Jeff Foust                 thule    41 1573821 2.605125e-05
## 6793    Jeff Foust          trajectories    41 1573821 2.605125e-05
## 6794    Jeff Foust           transmitted    41 1573821 2.605125e-05
## 6795    Jeff Foust             turbopump    41 1573821 2.605125e-05
## 6796    Jeff Foust                week’s    41 1573821 2.605125e-05
## 6797    Jeff Foust             whitmeyer    41 1573821 2.605125e-05
## 6798    Jeff Foust                wilbur    41 1573821 2.605125e-05
## 6799  Sandra Erwin                  11th    41  716353 5.723435e-05
## 6800  Sandra Erwin             airplanes    41  716353 5.723435e-05
## 6801  Sandra Erwin            australian    41  716353 5.723435e-05
## 6802  Sandra Erwin              competed    41  716353 5.723435e-05
## 6803  Sandra Erwin                 crada    41  716353 5.723435e-05
## 6804  Sandra Erwin            cyberspace    41  716353 5.723435e-05
## 6805  Sandra Erwin             directors    41  716353 5.723435e-05
## 6806  Sandra Erwin                 dozen    41  716353 5.723435e-05
## 6807  Sandra Erwin                  drop    41  716353 5.723435e-05
## 6808  Sandra Erwin                  elon    41  716353 5.723435e-05
## 6809  Sandra Erwin               enables    41  716353 5.723435e-05
## 6810  Sandra Erwin              findings    41  716353 5.723435e-05
## 6811  Sandra Erwin                  hart    41  716353 5.723435e-05
## 6812  Sandra Erwin           identifying    41  716353 5.723435e-05
## 6813  Sandra Erwin             insistent    41  716353 5.723435e-05
## 6814  Sandra Erwin              investor    41  716353 5.723435e-05
## 6815  Sandra Erwin                  lays    41  716353 5.723435e-05
## 6816  Sandra Erwin               oceanic    41  716353 5.723435e-05
## 6817  Sandra Erwin                  paul    41  716353 5.723435e-05
## 6818  Sandra Erwin                  penn    41  716353 5.723435e-05
## 6819  Sandra Erwin                picked    41  716353 5.723435e-05
## 6820  Sandra Erwin              pressing    41  716353 5.723435e-05
## 6821  Sandra Erwin               reading    41  716353 5.723435e-05
## 6822  Sandra Erwin           reliability    41  716353 5.723435e-05
## 6823  Sandra Erwin                  ride    41  716353 5.723435e-05
## 6824  Sandra Erwin                   slc    41  716353 5.723435e-05
## 6825  Sandra Erwin        sustainability    41  716353 5.723435e-05
## 6826  Sandra Erwin                teamed    41  716353 5.723435e-05
## 6827  Sandra Erwin             telescope    41  716353 5.723435e-05
## 6828  Sandra Erwin                trends    41  716353 5.723435e-05
## 6829  Sandra Erwin               tweeted    41  716353 5.723435e-05
## 6830  Sandra Erwin                 union    41  716353 5.723435e-05
## 6831    Jeff Foust                absent    40 1573821 2.541585e-05
## 6832    Jeff Foust                 align    40 1573821 2.541585e-05
## 6833    Jeff Foust          amortization    40 1573821 2.541585e-05
## 6834    Jeff Foust               assumed    40 1573821 2.541585e-05
## 6835    Jeff Foust          astrobotic’s    40 1573821 2.541585e-05
## 6836    Jeff Foust                brazil    40 1573821 2.541585e-05
## 6837    Jeff Foust                bridge    40 1573821 2.541585e-05
## 6838    Jeff Foust             briefings    40 1573821 2.541585e-05
## 6839    Jeff Foust                broken    40 1573821 2.541585e-05
## 6840    Jeff Foust                 clark    40 1573821 2.541585e-05
## 6841    Jeff Foust                 color    40 1573821 2.541585e-05
## 6842    Jeff Foust           communities    40 1573821 2.541585e-05
## 6843    Jeff Foust               convert    40 1573821 2.541585e-05
## 6844    Jeff Foust                  cots    40 1573821 2.541585e-05
## 6845    Jeff Foust               craters    40 1573821 2.541585e-05
## 6846    Jeff Foust                driver    40 1573821 2.541585e-05
## 6847    Jeff Foust           efficiently    40 1573821 2.541585e-05
## 6848    Jeff Foust       electromagnetic    40 1573821 2.541585e-05
## 6849    Jeff Foust                enters    40 1573821 2.541585e-05
## 6850    Jeff Foust              evolving    40 1573821 2.541585e-05
## 6851    Jeff Foust             excluding    40 1573821 2.541585e-05
## 6852    Jeff Foust           formulation    40 1573821 2.541585e-05
## 6853    Jeff Foust               garrett    40 1573821 2.541585e-05
## 6854    Jeff Foust                  grab    40 1573821 2.541585e-05
## 6855    Jeff Foust                intact    40 1573821 2.541585e-05
## 6856    Jeff Foust                   ion    40 1573821 2.541585e-05
## 6857    Jeff Foust                  koch    40 1573821 2.541585e-05
## 6858    Jeff Foust             lightsail    40 1573821 2.541585e-05
## 6859    Jeff Foust            likelihood    40 1573821 2.541585e-05
## 6860    Jeff Foust                 maria    40 1573821 2.541585e-05
## 6861    Jeff Foust               moments    40 1573821 2.541585e-05
## 6862    Jeff Foust            negotiated    40 1573821 2.541585e-05
## 6863    Jeff Foust                 noise    40 1573821 2.541585e-05
## 6864    Jeff Foust              numerous    40 1573821 2.541585e-05
## 6865    Jeff Foust             optimized    40 1573821 2.541585e-05
## 6866    Jeff Foust               origins    40 1573821 2.541585e-05
## 6867    Jeff Foust               outline    40 1573821 2.541585e-05
## 6868    Jeff Foust              oversees    40 1573821 2.541585e-05
## 6869    Jeff Foust             parabolic    40 1573821 2.541585e-05
## 6870    Jeff Foust              petition    40 1573821 2.541585e-05
## 6871    Jeff Foust              pipeline    40 1573821 2.541585e-05
## 6872    Jeff Foust              planetiq    40 1573821 2.541585e-05
## 6873    Jeff Foust          productivity    40 1573821 2.541585e-05
## 6874    Jeff Foust            properties    40 1573821 2.541585e-05
## 6875    Jeff Foust              quarters    40 1573821 2.541585e-05
## 6876    Jeff Foust                radars    40 1573821 2.541585e-05
## 6877    Jeff Foust              realized    40 1573821 2.541585e-05
## 6878    Jeff Foust             reporting    40 1573821 2.541585e-05
## 6879    Jeff Foust              rigorous    40 1573821 2.541585e-05
## 6880    Jeff Foust                 sarah    40 1573821 2.541585e-05
## 6881    Jeff Foust             satisfied    40 1573821 2.541585e-05
## 6882    Jeff Foust           seismometer    40 1573821 2.541585e-05
## 6883    Jeff Foust              shakeout    40 1573821 2.541585e-05
## 6884    Jeff Foust              shortage    40 1573821 2.541585e-05
## 6885    Jeff Foust              steering    40 1573821 2.541585e-05
## 6886    Jeff Foust                  taxi    40 1573821 2.541585e-05
## 6887    Jeff Foust                 tubes    40 1573821 2.541585e-05
## 6888    Jeff Foust                unlock    40 1573821 2.541585e-05
## 6889    Jeff Foust             urthecast    40 1573821 2.541585e-05
## 6890    Jeff Foust                    v2    40 1573821 2.541585e-05
## 6891    Jeff Foust                weekly    40 1573821 2.541585e-05
## 6892    Jeff Foust              wireless    40 1573821 2.541585e-05
## 6893  Sandra Erwin            accessible    40  716353 5.583839e-05
## 6894  Sandra Erwin              advocacy    40  716353 5.583839e-05
## 6895  Sandra Erwin              affected    40  716353 5.583839e-05
## 6896  Sandra Erwin                agrees    40  716353 5.583839e-05
## 6897  Sandra Erwin              amazon’s    40  716353 5.583839e-05
## 6898  Sandra Erwin               approve    40  716353 5.583839e-05
## 6899  Sandra Erwin                campus    40  716353 5.583839e-05
## 6900  Sandra Erwin                 chose    40  716353 5.583839e-05
## 6901  Sandra Erwin             commented    40  716353 5.583839e-05
## 6902  Sandra Erwin              cultural    40  716353 5.583839e-05
## 6903  Sandra Erwin              detected    40  716353 5.583839e-05
## 6904  Sandra Erwin              emphasis    40  716353 5.583839e-05
## 6905  Sandra Erwin              expedite    40  716353 5.583839e-05
## 6906  Sandra Erwin             extensive    40  716353 5.583839e-05
## 6907  Sandra Erwin                family    40  716353 5.583839e-05
## 6908  Sandra Erwin                  feet    40  716353 5.583839e-05
## 6909  Sandra Erwin              frequent    40  716353 5.583839e-05
## 6910  Sandra Erwin            functional    40  716353 5.583839e-05
## 6911  Sandra Erwin                   gem    40  716353 5.583839e-05
## 6912  Sandra Erwin             introduce    40  716353 5.583839e-05
## 6913  Sandra Erwin              maryland    40  716353 5.583839e-05
## 6914  Sandra Erwin               mindset    40  716353 5.583839e-05
## 6915  Sandra Erwin              modified    40  716353 5.583839e-05
## 6916  Sandra Erwin               modular    40  716353 5.583839e-05
## 6917  Sandra Erwin               morning    40  716353 5.583839e-05
## 6918  Sandra Erwin             motivated    40  716353 5.583839e-05
## 6919  Sandra Erwin               obvious    40  716353 5.583839e-05
## 6920  Sandra Erwin                 occur    40  716353 5.583839e-05
## 6921  Sandra Erwin            optimistic    40  716353 5.583839e-05
## 6922  Sandra Erwin              outreach    40  716353 5.583839e-05
## 6923  Sandra Erwin                  owns    40  716353 5.583839e-05
## 6924  Sandra Erwin              quantity    40  716353 5.583839e-05
## 6925  Sandra Erwin                  reed    40  716353 5.583839e-05
## 6926  Sandra Erwin              regional    40  716353 5.583839e-05
## 6927  Sandra Erwin             responses    40  716353 5.583839e-05
## 6928  Sandra Erwin                  rule    40  716353 5.583839e-05
## 6929  Sandra Erwin            satellogic    40  716353 5.583839e-05
## 6930  Sandra Erwin                 shown    40  716353 5.583839e-05
## 6931  Sandra Erwin                 sight    40  716353 5.583839e-05
## 6932  Sandra Erwin           specialized    40  716353 5.583839e-05
## 6933  Sandra Erwin                 super    40  716353 5.583839e-05
## 6934  Sandra Erwin                survey    40  716353 5.583839e-05
## 6935  Sandra Erwin                ticket    40  716353 5.583839e-05
## 6936  Sandra Erwin                 umbra    40  716353 5.583839e-05
## 6937  Sandra Erwin           understands    40  716353 5.583839e-05
## 6938  Sandra Erwin                    va    40  716353 5.583839e-05
## 6939    Jeff Foust               absence    39 1573821 2.478045e-05
## 6940    Jeff Foust           accelerator    39 1573821 2.478045e-05
## 6941    Jeff Foust       accomplishments    39 1573821 2.478045e-05
## 6942    Jeff Foust               advised    39 1573821 2.478045e-05
## 6943    Jeff Foust              airlines    39 1573821 2.478045e-05
## 6944    Jeff Foust                 alive    39 1573821 2.478045e-05
## 6945    Jeff Foust            applicants    39 1573821 2.478045e-05
## 6946    Jeff Foust                  ariz    39 1573821 2.478045e-05
## 6947    Jeff Foust              campbell    39 1573821 2.478045e-05
## 6948    Jeff Foust              captured    39 1573821 2.478045e-05
## 6949    Jeff Foust               certify    39 1573821 2.478045e-05
## 6950    Jeff Foust               coleman    39 1573821 2.478045e-05
## 6951    Jeff Foust             computing    39 1573821 2.478045e-05
## 6952    Jeff Foust          considerable    39 1573821 2.478045e-05
## 6953    Jeff Foust              constant    39 1573821 2.478045e-05
## 6954    Jeff Foust              contrary    39 1573821 2.478045e-05
## 6955    Jeff Foust            converting    39 1573821 2.478045e-05
## 6956    Jeff Foust           counterpart    39 1573821 2.478045e-05
## 6957    Jeff Foust                  curt    39 1573821 2.478045e-05
## 6958    Jeff Foust             dangerous    39 1573821 2.478045e-05
## 6959    Jeff Foust                  dave    39 1573821 2.478045e-05
## 6960    Jeff Foust             deorbited    39 1573821 2.478045e-05
## 6961    Jeff Foust           description    39 1573821 2.478045e-05
## 6962    Jeff Foust                 eagle    39 1573821 2.478045e-05
## 6963    Jeff Foust           eliminating    39 1573821 2.478045e-05
## 6964    Jeff Foust             encounter    39 1573821 2.478045e-05
## 6965    Jeff Foust             envisions    39 1573821 2.478045e-05
## 6966    Jeff Foust         euroconsult’s    39 1573821 2.478045e-05
## 6967    Jeff Foust             exclusive    39 1573821 2.478045e-05
## 6968    Jeff Foust           expeditions    39 1573821 2.478045e-05
## 6969    Jeff Foust                  fear    39 1573821 2.478045e-05
## 6970    Jeff Foust                  feed    39 1573821 2.478045e-05
## 6971    Jeff Foust                  feet    39 1573821 2.478045e-05
## 6972    Jeff Foust              fidelity    39 1573821 2.478045e-05
## 6973    Jeff Foust                  foot    39 1573821 2.478045e-05
## 6974    Jeff Foust                 gases    39 1573821 2.478045e-05
## 6975    Jeff Foust               gbtimes    39 1573821 2.478045e-05
## 6976    Jeff Foust           geophysical    39 1573821 2.478045e-05
## 6977    Jeff Foust                 geyer    39 1573821 2.478045e-05
## 6978    Jeff Foust                  hera    39 1573821 2.478045e-05
## 6979    Jeff Foust                hunter    39 1573821 2.478045e-05
## 6980    Jeff Foust                 iceye    39 1573821 2.478045e-05
## 6981    Jeff Foust                  imap    39 1573821 2.478045e-05
## 6982    Jeff Foust            incentives    39 1573821 2.478045e-05
## 6983    Jeff Foust          insufficient    39 1573821 2.478045e-05
## 6984    Jeff Foust       internationally    39 1573821 2.478045e-05
## 6985    Jeff Foust              jonathan    39 1573821 2.478045e-05
## 6986    Jeff Foust                kendra    39 1573821 2.478045e-05
## 6987    Jeff Foust                  loan    39 1573821 2.478045e-05
## 6988    Jeff Foust                memory    39 1573821 2.478045e-05
## 6989    Jeff Foust                  nprm    39 1573821 2.478045e-05
## 6990    Jeff Foust                papers    39 1573821 2.478045e-05
## 6991    Jeff Foust                peters    39 1573821 2.478045e-05
## 6992    Jeff Foust               platzer    39 1573821 2.478045e-05
## 6993    Jeff Foust        reconciliation    39 1573821 2.478045e-05
## 6994    Jeff Foust                relied    39 1573821 2.478045e-05
## 6995    Jeff Foust               restart    39 1573821 2.478045e-05
## 6996    Jeff Foust                 robot    39 1573821 2.478045e-05
## 6997    Jeff Foust                rogers    39 1573821 2.478045e-05
## 6998    Jeff Foust              russians    39 1573821 2.478045e-05
## 6999    Jeff Foust                solely    39 1573821 2.478045e-05
## 7000    Jeff Foust           spaceport’s    39 1573821 2.478045e-05
## 7001    Jeff Foust                 stays    39 1573821 2.478045e-05
## 7002    Jeff Foust             switching    39 1573821 2.478045e-05
## 7003    Jeff Foust           synspective    39 1573821 2.478045e-05
## 7004    Jeff Foust           terminating    39 1573821 2.478045e-05
## 7005    Jeff Foust            triggering    39 1573821 2.478045e-05
## 7006    Jeff Foust          unsuccessful    39 1573821 2.478045e-05
## 7007    Jeff Foust                   web    39 1573821 2.478045e-05
## 7008    Jeff Foust                 worse    39 1573821 2.478045e-05
## 7009  Sandra Erwin                agenda    39  716353 5.444243e-05
## 7010  Sandra Erwin               answers    39  716353 5.444243e-05
## 7011  Sandra Erwin               aspects    39  716353 5.444243e-05
## 7012  Sandra Erwin                   ban    39  716353 5.444243e-05
## 7013  Sandra Erwin                beames    39  716353 5.444243e-05
## 7014  Sandra Erwin                  belt    39  716353 5.444243e-05
## 7015  Sandra Erwin                chosen    39  716353 5.444243e-05
## 7016  Sandra Erwin          consequences    39  716353 5.444243e-05
## 7017  Sandra Erwin           contentious    39  716353 5.444243e-05
## 7018  Sandra Erwin                 drawn    39  716353 5.444243e-05
## 7019  Sandra Erwin                    eo    39  716353 5.444243e-05
## 7020  Sandra Erwin                  eocl    39  716353 5.444243e-05
## 7021  Sandra Erwin            evaluating    39  716353 5.444243e-05
## 7022  Sandra Erwin              evolving    39  716353 5.444243e-05
## 7023  Sandra Erwin             federally    39  716353 5.444243e-05
## 7024  Sandra Erwin               fielded    39  716353 5.444243e-05
## 7025  Sandra Erwin              forecast    39  716353 5.444243e-05
## 7026  Sandra Erwin             generated    39  716353 5.444243e-05
## 7027  Sandra Erwin            governance    39  716353 5.444243e-05
## 7028  Sandra Erwin               healthy    39  716353 5.444243e-05
## 7029  Sandra Erwin                  hire    39  716353 5.444243e-05
## 7030  Sandra Erwin          implementing    39  716353 5.444243e-05
## 7031  Sandra Erwin            impossible    39  716353 5.444243e-05
## 7032  Sandra Erwin              incoming    39  716353 5.444243e-05
## 7033  Sandra Erwin         independently    39  716353 5.444243e-05
## 7034  Sandra Erwin                kratos    39  716353 5.444243e-05
## 7035  Sandra Erwin              mitigate    39  716353 5.444243e-05
## 7036  Sandra Erwin              monteith    39  716353 5.444243e-05
## 7037  Sandra Erwin               ranging    39  716353 5.444243e-05
## 7038  Sandra Erwin            reasonable    39  716353 5.444243e-05
## 7039  Sandra Erwin            recommends    39  716353 5.444243e-05
## 7040  Sandra Erwin                   sun    39  716353 5.444243e-05
## 7041  Sandra Erwin                  tenn    39  716353 5.444243e-05
## 7042  Sandra Erwin            terminated    39  716353 5.444243e-05
## 7043  Sandra Erwin               trained    39  716353 5.444243e-05
## 7044  Sandra Erwin              transmit    39  716353 5.444243e-05
## 7045  Sandra Erwin                treaty    39  716353 5.444243e-05
## 7046  Sandra Erwin                versus    39  716353 5.444243e-05
## 7047  Sandra Erwin                weight    39  716353 5.444243e-05
## 7048  Sandra Erwin               workers    39  716353 5.444243e-05
## 7049    Jeff Foust                  21st    38 1573821 2.414506e-05
## 7050    Jeff Foust               aerosol    38 1573821 2.414506e-05
## 7051    Jeff Foust              airplane    38 1573821 2.414506e-05
## 7052    Jeff Foust             alignment    38 1573821 2.414506e-05
## 7053    Jeff Foust                angara    38 1573821 2.414506e-05
## 7054    Jeff Foust             appearing    38 1573821 2.414506e-05
## 7055    Jeff Foust             attending    38 1573821 2.414506e-05
## 7056    Jeff Foust           authorizing    38 1573821 2.414506e-05
## 7057    Jeff Foust               awaited    38 1573821 2.414506e-05
## 7058    Jeff Foust             bloomberg    38 1573821 2.414506e-05
## 7059    Jeff Foust                border    38 1573821 2.414506e-05
## 7060    Jeff Foust              channels    38 1573821 2.414506e-05
## 7061    Jeff Foust                 chile    38 1573821 2.414506e-05
## 7062    Jeff Foust               chilton    38 1573821 2.414506e-05
## 7063    Jeff Foust              commonly    38 1573821 2.414506e-05
## 7064    Jeff Foust               disrupt    38 1573821 2.414506e-05
## 7065    Jeff Foust          distribution    38 1573821 2.414506e-05
## 7066    Jeff Foust              elevated    38 1573821 2.414506e-05
## 7067    Jeff Foust             endurance    38 1573821 2.414506e-05
## 7068    Jeff Foust           exacerbated    38 1573821 2.414506e-05
## 7069    Jeff Foust                  file    38 1573821 2.414506e-05
## 7070    Jeff Foust              finalist    38 1573821 2.414506e-05
## 7071    Jeff Foust             firefly’s    38 1573821 2.414506e-05
## 7072    Jeff Foust                gather    38 1573821 2.414506e-05
## 7073    Jeff Foust           generations    38 1573821 2.414506e-05
## 7074    Jeff Foust                glitch    38 1573821 2.414506e-05
## 7075    Jeff Foust               hitting    38 1573821 2.414506e-05
## 7076    Jeff Foust        identification    38 1573821 2.414506e-05
## 7077    Jeff Foust             impressed    38 1573821 2.414506e-05
## 7078    Jeff Foust                income    38 1573821 2.414506e-05
## 7079    Jeff Foust                jezero    38 1573821 2.414506e-05
## 7080    Jeff Foust                 johns    38 1573821 2.414506e-05
## 7081    Jeff Foust                layers    38 1573821 2.414506e-05
## 7082    Jeff Foust                    le    38 1573821 2.414506e-05
## 7083    Jeff Foust                   lee    38 1573821 2.414506e-05
## 7084    Jeff Foust             lightning    38 1573821 2.414506e-05
## 7085    Jeff Foust                 mahia    38 1573821 2.414506e-05
## 7086    Jeff Foust                master    38 1573821 2.414506e-05
## 7087    Jeff Foust               maxwell    38 1573821 2.414506e-05
## 7088    Jeff Foust                 meets    38 1573821 2.414506e-05
## 7089    Jeff Foust               merging    38 1573821 2.414506e-05
## 7090    Jeff Foust                merlin    38 1573821 2.414506e-05
## 7091    Jeff Foust                   ntp    38 1573821 2.414506e-05
## 7092    Jeff Foust              oklahoma    38 1573821 2.414506e-05
## 7093    Jeff Foust               organic    38 1573821 2.414506e-05
## 7094    Jeff Foust               piemont    38 1573821 2.414506e-05
## 7095    Jeff Foust                plumes    38 1573821 2.414506e-05
## 7096    Jeff Foust        pressurization    38 1573821 2.414506e-05
## 7097    Jeff Foust            projecting    38 1573821 2.414506e-05
## 7098    Jeff Foust                ranged    38 1573821 2.414506e-05
## 7099    Jeff Foust              remotely    38 1573821 2.414506e-05
## 7100    Jeff Foust           resolutions    38 1573821 2.414506e-05
## 7101    Jeff Foust              restrict    38 1573821 2.414506e-05
## 7102    Jeff Foust                 roger    38 1573821 2.414506e-05
## 7103    Jeff Foust                 route    38 1573821 2.414506e-05
## 7104    Jeff Foust             shouldn’t    38 1573821 2.414506e-05
## 7105    Jeff Foust           simulations    38 1573821 2.414506e-05
## 7106    Jeff Foust                   sir    38 1573821 2.414506e-05
## 7107    Jeff Foust                  slot    38 1573821 2.414506e-05
## 7108    Jeff Foust                slower    38 1573821 2.414506e-05
## 7109    Jeff Foust              starbase    38 1573821 2.414506e-05
## 7110    Jeff Foust                stress    38 1573821 2.414506e-05
## 7111    Jeff Foust                symbol    38 1573821 2.414506e-05
## 7112    Jeff Foust              tactical    38 1573821 2.414506e-05
## 7113    Jeff Foust             utilizing    38 1573821 2.414506e-05
## 7114    Jeff Foust                  vcls    38 1573821 2.414506e-05
## 7115    Jeff Foust               vessels    38 1573821 2.414506e-05
## 7116    Jeff Foust                weapon    38 1573821 2.414506e-05
## 7117    Jeff Foust              withdrew    38 1573821 2.414506e-05
## 7118    Jeff Foust             worldview    38 1573821 2.414506e-05
## 7119  Sandra Erwin            accomplish    38  716353 5.304647e-05
## 7120  Sandra Erwin             advocates    38  716353 5.304647e-05
## 7121  Sandra Erwin                afrl’s    38  716353 5.304647e-05
## 7122  Sandra Erwin                   aid    38  716353 5.304647e-05
## 7123  Sandra Erwin               applies    38  716353 5.304647e-05
## 7124  Sandra Erwin            associates    38  716353 5.304647e-05
## 7125  Sandra Erwin                benign    38  716353 5.304647e-05
## 7126  Sandra Erwin                 bezos    38  716353 5.304647e-05
## 7127  Sandra Erwin          characterize    38  716353 5.304647e-05
## 7128  Sandra Erwin            complexity    38  716353 5.304647e-05
## 7129  Sandra Erwin             disrupted    38  716353 5.304647e-05
## 7130  Sandra Erwin              entities    38  716353 5.304647e-05
## 7131  Sandra Erwin                extent    38  716353 5.304647e-05
## 7132  Sandra Erwin                factor    38  716353 5.304647e-05
## 7133  Sandra Erwin                   fla    38  716353 5.304647e-05
## 7134  Sandra Erwin              fruition    38  716353 5.304647e-05
## 7135  Sandra Erwin               futures    38  716353 5.304647e-05
## 7136  Sandra Erwin                gained    38  716353 5.304647e-05
## 7137  Sandra Erwin                google    38  716353 5.304647e-05
## 7138  Sandra Erwin                  guam    38  716353 5.304647e-05
## 7139  Sandra Erwin                  harm    38  716353 5.304647e-05
## 7140  Sandra Erwin                  heat    38  716353 5.304647e-05
## 7141  Sandra Erwin               holding    38  716353 5.304647e-05
## 7142  Sandra Erwin             incumbent    38  716353 5.304647e-05
## 7143  Sandra Erwin           interceptor    38  716353 5.304647e-05
## 7144  Sandra Erwin                 lab’s    38  716353 5.304647e-05
## 7145  Sandra Erwin             licensing    38  716353 5.304647e-05
## 7146  Sandra Erwin            luxembourg    38  716353 5.304647e-05
## 7147  Sandra Erwin              mcaleese    38  716353 5.304647e-05
## 7148  Sandra Erwin                   mev    38  716353 5.304647e-05
## 7149  Sandra Erwin            networking    38  716353 5.304647e-05
## 7150  Sandra Erwin            objectives    38  716353 5.304647e-05
## 7151  Sandra Erwin                  ohio    38  716353 5.304647e-05
## 7152  Sandra Erwin                parent    38  716353 5.304647e-05
## 7153  Sandra Erwin              planet’s    38  716353 5.304647e-05
## 7154  Sandra Erwin            procedures    38  716353 5.304647e-05
## 7155  Sandra Erwin            proponents    38  716353 5.304647e-05
## 7156  Sandra Erwin               qualify    38  716353 5.304647e-05
## 7157  Sandra Erwin                rescue    38  716353 5.304647e-05
## 7158  Sandra Erwin                rivals    38  716353 5.304647e-05
## 7159  Sandra Erwin              rocket’s    38  716353 5.304647e-05
## 7160  Sandra Erwin            scientists    38  716353 5.304647e-05
## 7161  Sandra Erwin              serafini    38  716353 5.304647e-05
## 7162  Sandra Erwin                  shot    38  716353 5.304647e-05
## 7163  Sandra Erwin            simulation    38  716353 5.304647e-05
## 7164  Sandra Erwin              spacecom    38  716353 5.304647e-05
## 7165  Sandra Erwin            survivable    38  716353 5.304647e-05
## 7166  Sandra Erwin                 tasks    38  716353 5.304647e-05
## 7167  Sandra Erwin    telecommunications    38  716353 5.304647e-05
## 7168  Sandra Erwin             transform    38  716353 5.304647e-05
## 7169  Sandra Erwin                 wings    38  716353 5.304647e-05
## 7170    Jeff Foust                   abi    37 1573821 2.350966e-05
## 7171    Jeff Foust                aboard    37 1573821 2.350966e-05
## 7172    Jeff Foust            achievable    37 1573821 2.350966e-05
## 7173    Jeff Foust            adequately    37 1573821 2.350966e-05
## 7174    Jeff Foust               altemus    37 1573821 2.350966e-05
## 7175    Jeff Foust             armadillo    37 1573821 2.350966e-05
## 7176    Jeff Foust                athena    37 1573821 2.350966e-05
## 7177    Jeff Foust                  b612    37 1573821 2.350966e-05
## 7178    Jeff Foust                 books    37 1573821 2.350966e-05
## 7179    Jeff Foust                  boom    37 1573821 2.350966e-05
## 7180    Jeff Foust                 boots    37 1573821 2.350966e-05
## 7181    Jeff Foust                brexit    37 1573821 2.350966e-05
## 7182    Jeff Foust             campaigns    37 1573821 2.350966e-05
## 7183    Jeff Foust            challenger    37 1573821 2.350966e-05
## 7184    Jeff Foust               chances    37 1573821 2.350966e-05
## 7185    Jeff Foust               contest    37 1573821 2.350966e-05
## 7186    Jeff Foust                cospar    37 1573821 2.350966e-05
## 7187    Jeff Foust          depreciation    37 1573821 2.350966e-05
## 7188    Jeff Foust                device    37 1573821 2.350966e-05
## 7189    Jeff Foust           disruptions    37 1573821 2.350966e-05
## 7190    Jeff Foust                  dual    37 1573821 2.350966e-05
## 7191    Jeff Foust                   eft    37 1573821 2.350966e-05
## 7192    Jeff Foust            electron’s    37 1573821 2.350966e-05
## 7193    Jeff Foust               exhibit    37 1573821 2.350966e-05
## 7194    Jeff Foust            extensions    37 1573821 2.350966e-05
## 7195    Jeff Foust                fallen    37 1573821 2.350966e-05
## 7196    Jeff Foust               feather    37 1573821 2.350966e-05
## 7197    Jeff Foust           functioning    37 1573821 2.350966e-05
## 7198    Jeff Foust               greatly    37 1573821 2.350966e-05
## 7199    Jeff Foust                  guys    37 1573821 2.350966e-05
## 7200    Jeff Foust                handed    37 1573821 2.350966e-05
## 7201    Jeff Foust          historically    37 1573821 2.350966e-05
## 7202    Jeff Foust             incentive    37 1573821 2.350966e-05
## 7203    Jeff Foust                 joins    37 1573821 2.350966e-05
## 7204    Jeff Foust             kimbrough    37 1573821 2.350966e-05
## 7205    Jeff Foust               latency    37 1573821 2.350966e-05
## 7206    Jeff Foust                   lay    37 1573821 2.350966e-05
## 7207    Jeff Foust               lindsey    37 1573821 2.350966e-05
## 7208    Jeff Foust                  lock    37 1573821 2.350966e-05
## 7209    Jeff Foust               manages    37 1573821 2.350966e-05
## 7210    Jeff Foust                midair    37 1573821 2.350966e-05
## 7211    Jeff Foust               month’s    37 1573821 2.350966e-05
## 7212    Jeff Foust               neptune    37 1573821 2.350966e-05
## 7213    Jeff Foust                  norm    37 1573821 2.350966e-05
## 7214    Jeff Foust          notification    37 1573821 2.350966e-05
## 7215    Jeff Foust              orbiters    37 1573821 2.350966e-05
## 7216    Jeff Foust            perception    37 1573821 2.350966e-05
## 7217    Jeff Foust                phased    37 1573821 2.350966e-05
## 7218    Jeff Foust            prediction    37 1573821 2.350966e-05
## 7219    Jeff Foust               printed    37 1573821 2.350966e-05
## 7220    Jeff Foust                 proof    37 1573821 2.350966e-05
## 7221    Jeff Foust               ramping    37 1573821 2.350966e-05
## 7222    Jeff Foust            reassigned    37 1573821 2.350966e-05
## 7223    Jeff Foust                reject    37 1573821 2.350966e-05
## 7224    Jeff Foust          relativity’s    37 1573821 2.350966e-05
## 7225    Jeff Foust        representative    37 1573821 2.350966e-05
## 7226    Jeff Foust                  ring    37 1573821 2.350966e-05
## 7227    Jeff Foust            scheduling    37 1573821 2.350966e-05
## 7228    Jeff Foust                 score    37 1573821 2.350966e-05
## 7229    Jeff Foust               shorten    37 1573821 2.350966e-05
## 7230    Jeff Foust         sophisticated    37 1573821 2.350966e-05
## 7231    Jeff Foust           spacefaring    37 1573821 2.350966e-05
## 7232    Jeff Foust            spinlaunch    37 1573821 2.350966e-05
## 7233    Jeff Foust              squadron    37 1573821 2.350966e-05
## 7234    Jeff Foust              stafford    37 1573821 2.350966e-05
## 7235    Jeff Foust             strengths    37 1573821 2.350966e-05
## 7236    Jeff Foust              survived    37 1573821 2.350966e-05
## 7237    Jeff Foust                 tempo    37 1573821 2.350966e-05
## 7238    Jeff Foust                  tier    37 1573821 2.350966e-05
## 7239    Jeff Foust                 trunk    37 1573821 2.350966e-05
## 7240    Jeff Foust              undocked    37 1573821 2.350966e-05
## 7241    Jeff Foust          university’s    37 1573821 2.350966e-05
## 7242    Jeff Foust                uranus    37 1573821 2.350966e-05
## 7243    Jeff Foust              validate    37 1573821 2.350966e-05
## 7244    Jeff Foust             virtually    37 1573821 2.350966e-05
## 7245    Jeff Foust                  warm    37 1573821 2.350966e-05
## 7246    Jeff Foust                 wheel    37 1573821 2.350966e-05
## 7247    Jeff Foust                 wider    37 1573821 2.350966e-05
## 7248  Sandra Erwin                  18th    37  716353 5.165051e-05
## 7249  Sandra Erwin              accuracy    37  716353 5.165051e-05
## 7250  Sandra Erwin            addressing    37  716353 5.165051e-05
## 7251  Sandra Erwin                  apps    37  716353 5.165051e-05
## 7252  Sandra Erwin                ascent    37  716353 5.165051e-05
## 7253  Sandra Erwin      characterization    37  716353 5.165051e-05
## 7254  Sandra Erwin             consensus    37  716353 5.165051e-05
## 7255  Sandra Erwin            continuous    37  716353 5.165051e-05
## 7256  Sandra Erwin           coordinated    37  716353 5.165051e-05
## 7257  Sandra Erwin             defensive    37  716353 5.165051e-05
## 7258  Sandra Erwin                deltas    37  716353 5.165051e-05
## 7259  Sandra Erwin         demonstrating    37  716353 5.165051e-05
## 7260  Sandra Erwin               docking    37  716353 5.165051e-05
## 7261  Sandra Erwin                   drs    37  716353 5.165051e-05
## 7262  Sandra Erwin              earnings    37  716353 5.165051e-05
## 7263  Sandra Erwin        electronically    37  716353 5.165051e-05
## 7264  Sandra Erwin                  flow    37  716353 5.165051e-05
## 7265  Sandra Erwin              formally    37  716353 5.165051e-05
## 7266  Sandra Erwin               gaining    37  716353 5.165051e-05
## 7267  Sandra Erwin                 guide    37  716353 5.165051e-05
## 7268  Sandra Erwin           investigate    37  716353 5.165051e-05
## 7269  Sandra Erwin                island    37  716353 5.165051e-05
## 7270  Sandra Erwin                 leave    37  716353 5.165051e-05
## 7271  Sandra Erwin               lessons    37  716353 5.165051e-05
## 7272  Sandra Erwin                 local    37  716353 5.165051e-05
## 7273  Sandra Erwin             marketing    37  716353 5.165051e-05
## 7274  Sandra Erwin                master    37  716353 5.165051e-05
## 7275  Sandra Erwin                 meant    37  716353 5.165051e-05
## 7276  Sandra Erwin              momentum    37  716353 5.165051e-05
## 7277  Sandra Erwin                 nga’s    37  716353 5.165051e-05
## 7278  Sandra Erwin               pending    37  716353 5.165051e-05
## 7279  Sandra Erwin              peterman    37  716353 5.165051e-05
## 7280  Sandra Erwin             purchased    37  716353 5.165051e-05
## 7281  Sandra Erwin             radiation    37  716353 5.165051e-05
## 7282  Sandra Erwin                  ramp    37  716353 5.165051e-05
## 7283  Sandra Erwin              recalled    37  716353 5.165051e-05
## 7284  Sandra Erwin              reducing    37  716353 5.165051e-05
## 7285  Sandra Erwin            relocation    37  716353 5.165051e-05
## 7286  Sandra Erwin                remove    37  716353 5.165051e-05
## 7287  Sandra Erwin          restrictions    37  716353 5.165051e-05
## 7288  Sandra Erwin                  saic    37  716353 5.165051e-05
## 7289  Sandra Erwin                school    37  716353 5.165051e-05
## 7290  Sandra Erwin                stable    37  716353 5.165051e-05
## 7291  Sandra Erwin               suggest    37  716353 5.165051e-05
## 7292  Sandra Erwin                 sworn    37  716353 5.165051e-05
## 7293  Sandra Erwin               trusted    37  716353 5.165051e-05
## 7294  Sandra Erwin               webcast    37  716353 5.165051e-05
## 7295  Sandra Erwin                you’ve    37  716353 5.165051e-05
## 7296    Jeff Foust           allocations    36 1573821 2.287427e-05
## 7297    Jeff Foust              amazon’s    36 1573821 2.287427e-05
## 7298    Jeff Foust              applying    36 1573821 2.287427e-05
## 7299    Jeff Foust               arrives    36 1573821 2.287427e-05
## 7300    Jeff Foust              assemble    36 1573821 2.287427e-05
## 7301    Jeff Foust                attach    36 1573821 2.287427e-05
## 7302    Jeff Foust             ballistic    36 1573821 2.287427e-05
## 7303    Jeff Foust                   bay    36 1573821 2.287427e-05
## 7304    Jeff Foust                 benji    36 1573821 2.287427e-05
## 7305    Jeff Foust                bharti    36 1573821 2.287427e-05
## 7306    Jeff Foust                blocks    36 1573821 2.287427e-05
## 7307    Jeff Foust               broadly    36 1573821 2.287427e-05
## 7308    Jeff Foust                 bruce    36 1573821 2.287427e-05
## 7309    Jeff Foust                 cells    36 1573821 2.287427e-05
## 7310    Jeff Foust               cheaper    36 1573821 2.287427e-05
## 7311    Jeff Foust           christensen    36 1573821 2.287427e-05
## 7312    Jeff Foust               clarity    36 1573821 2.287427e-05
## 7313    Jeff Foust              closures    36 1573821 2.287427e-05
## 7314    Jeff Foust              collapse    36 1573821 2.287427e-05
## 7315    Jeff Foust               compare    36 1573821 2.287427e-05
## 7316    Jeff Foust               critics    36 1573821 2.287427e-05
## 7317    Jeff Foust                 crsra    36 1573821 2.287427e-05
## 7318    Jeff Foust               demauro    36 1573821 2.287427e-05
## 7319    Jeff Foust               derived    36 1573821 2.287427e-05
## 7320    Jeff Foust                dubrov    36 1573821 2.287427e-05
## 7321    Jeff Foust                 eager    36 1573821 2.287427e-05
## 7322    Jeff Foust                 elbon    36 1573821 2.287427e-05
## 7323    Jeff Foust              endeavor    36 1573821 2.287427e-05
## 7324    Jeff Foust            facilitate    36 1573821 2.287427e-05
## 7325    Jeff Foust                 feels    36 1573821 2.287427e-05
## 7326    Jeff Foust             florida’s    36 1573821 2.287427e-05
## 7327    Jeff Foust         fundamentally    36 1573821 2.287427e-05
## 7328    Jeff Foust               greason    36 1573821 2.287427e-05
## 7329    Jeff Foust             grunsfeld    36 1573821 2.287427e-05
## 7330    Jeff Foust               harmful    36 1573821 2.287427e-05
## 7331    Jeff Foust               heating    36 1573821 2.287427e-05
## 7332    Jeff Foust                   iii    36 1573821 2.287427e-05
## 7333    Jeff Foust           incremental    36 1573821 2.287427e-05
## 7334    Jeff Foust                  leap    36 1573821 2.287427e-05
## 7335    Jeff Foust             microsoft    36 1573821 2.287427e-05
## 7336    Jeff Foust           mitigations    36 1573821 2.287427e-05
## 7337    Jeff Foust   nasaspaceflight.com    36 1573821 2.287427e-05
## 7338    Jeff Foust           nonetheless    36 1573821 2.287427e-05
## 7339    Jeff Foust             northstar    36 1573821 2.287427e-05
## 7340    Jeff Foust                  oleg    36 1573821 2.287427e-05
## 7341    Jeff Foust                  opag    36 1573821 2.287427e-05
## 7342    Jeff Foust                  osam    36 1573821 2.287427e-05
## 7343    Jeff Foust               pence’s    36 1573821 2.287427e-05
## 7344    Jeff Foust             practical    36 1573821 2.287427e-05
## 7345    Jeff Foust               premium    36 1573821 2.287427e-05
## 7346    Jeff Foust              procured    36 1573821 2.287427e-05
## 7347    Jeff Foust              profiles    36 1573821 2.287427e-05
## 7348    Jeff Foust             prokopyev    36 1573821 2.287427e-05
## 7349    Jeff Foust              radarsat    36 1573821 2.287427e-05
## 7350    Jeff Foust             regulated    36 1573821 2.287427e-05
## 7351    Jeff Foust                repeat    36 1573821 2.287427e-05
## 7352    Jeff Foust              setbacks    36 1573821 2.287427e-05
## 7353    Jeff Foust              shenzhou    36 1573821 2.287427e-05
## 7354    Jeff Foust               slowing    36 1573821 2.287427e-05
## 7355    Jeff Foust             stimulate    36 1573821 2.287427e-05
## 7356    Jeff Foust            strategies    36 1573821 2.287427e-05
## 7357    Jeff Foust             successes    36 1573821 2.287427e-05
## 7358    Jeff Foust            supersonic    36 1573821 2.287427e-05
## 7359    Jeff Foust                   tap    36 1573821 2.287427e-05
## 7360    Jeff Foust             taxpayers    36 1573821 2.287427e-05
## 7361    Jeff Foust               tipping    36 1573821 2.287427e-05
## 7362    Jeff Foust                 tyvak    36 1573821 2.287427e-05
## 7363    Jeff Foust          unacceptable    36 1573821 2.287427e-05
## 7364    Jeff Foust                 urban    36 1573821 2.287427e-05
## 7365    Jeff Foust                 urged    36 1573821 2.287427e-05
## 7366    Jeff Foust                 vegas    36 1573821 2.287427e-05
## 7367  Sandra Erwin                   adm    36  716353 5.025455e-05
## 7368  Sandra Erwin             alongside    36  716353 5.025455e-05
## 7369  Sandra Erwin           arrangement    36  716353 5.025455e-05
## 7370  Sandra Erwin                assume    36  716353 5.025455e-05
## 7371  Sandra Erwin             automated    36  716353 5.025455e-05
## 7372  Sandra Erwin           bridenstine    36  716353 5.025455e-05
## 7373  Sandra Erwin                  care    36  716353 5.025455e-05
## 7374  Sandra Erwin          commissioned    36  716353 5.025455e-05
## 7375  Sandra Erwin                crider    36  716353 5.025455e-05
## 7376  Sandra Erwin              defended    36  716353 5.025455e-05
## 7377  Sandra Erwin                double    36  716353 5.025455e-05
## 7378  Sandra Erwin             eliminate    36  716353 5.025455e-05
## 7379  Sandra Erwin              evidence    36  716353 5.025455e-05
## 7380  Sandra Erwin             extending    36  716353 5.025455e-05
## 7381  Sandra Erwin                 floor    36  716353 5.025455e-05
## 7382  Sandra Erwin                 gssap    36  716353 5.025455e-05
## 7383  Sandra Erwin                hawaii    36  716353 5.025455e-05
## 7384  Sandra Erwin                 hbtss    36  716353 5.025455e-05
## 7385  Sandra Erwin                headed    36  716353 5.025455e-05
## 7386  Sandra Erwin                   hot    36  716353 5.025455e-05
## 7387  Sandra Erwin              instance    36  716353 5.025455e-05
## 7388  Sandra Erwin         investigation    36  716353 5.025455e-05
## 7389  Sandra Erwin                  isac    36  716353 5.025455e-05
## 7390  Sandra Erwin                makers    36  716353 5.025455e-05
## 7391  Sandra Erwin          manufactures    36  716353 5.025455e-05
## 7392  Sandra Erwin            mitigation    36  716353 5.025455e-05
## 7393  Sandra Erwin              modeling    36  716353 5.025455e-05
## 7394  Sandra Erwin                modems    36  716353 5.025455e-05
## 7395  Sandra Erwin                  page    36  716353 5.025455e-05
## 7396  Sandra Erwin              parallel    36  716353 5.025455e-05
## 7397  Sandra Erwin                 peter    36  716353 5.025455e-05
## 7398  Sandra Erwin                 pivot    36  716353 5.025455e-05
## 7399  Sandra Erwin                  pose    36  716353 5.025455e-05
## 7400  Sandra Erwin           recognition    36  716353 5.025455e-05
## 7401  Sandra Erwin                refuel    36  716353 5.025455e-05
## 7402  Sandra Erwin             requiring    36  716353 5.025455e-05
## 7403  Sandra Erwin               reverse    36  716353 5.025455e-05
## 7404  Sandra Erwin              seamless    36  716353 5.025455e-05
## 7405  Sandra Erwin               selling    36  716353 5.025455e-05
## 7406  Sandra Erwin              setbacks    36  716353 5.025455e-05
## 7407  Sandra Erwin                 sheet    36  716353 5.025455e-05
## 7408  Sandra Erwin              shifting    36  716353 5.025455e-05
## 7409  Sandra Erwin                skynet    36  716353 5.025455e-05
## 7410  Sandra Erwin                  sold    36  716353 5.025455e-05
## 7411  Sandra Erwin                 sound    36  716353 5.025455e-05
## 7412  Sandra Erwin                 speak    36  716353 5.025455e-05
## 7413  Sandra Erwin              spoofing    36  716353 5.025455e-05
## 7414  Sandra Erwin                  swac    36  716353 5.025455e-05
## 7415  Sandra Erwin             temporary    36  716353 5.025455e-05
## 7416  Sandra Erwin                  tens    36  716353 5.025455e-05
## 7417  Sandra Erwin                vector    36  716353 5.025455e-05
## 7418  Sandra Erwin                 write    36  716353 5.025455e-05
## 7419    Jeff Foust                 acres    35 1573821 2.223887e-05
## 7420    Jeff Foust              aderholt    35 1573821 2.223887e-05
## 7421    Jeff Foust              aluminum    35 1573821 2.223887e-05
## 7422    Jeff Foust              ambition    35 1573821 2.223887e-05
## 7423    Jeff Foust          anticipating    35 1573821 2.223887e-05
## 7424    Jeff Foust                 autry    35 1573821 2.223887e-05
## 7425    Jeff Foust                bought    35 1573821 2.223887e-05
## 7426    Jeff Foust                  club    35 1573821 2.223887e-05
## 7427    Jeff Foust           controversy    35 1573821 2.223887e-05
## 7428    Jeff Foust           culmination    35 1573821 2.223887e-05
## 7429    Jeff Foust         determination    35 1573821 2.223887e-05
## 7430    Jeff Foust                earned    35 1573821 2.223887e-05
## 7431    Jeff Foust                 elect    35 1573821 2.223887e-05
## 7432    Jeff Foust                 enact    35 1573821 2.223887e-05
## 7433    Jeff Foust             forefront    35 1573821 2.223887e-05
## 7434    Jeff Foust               friends    35 1573821 2.223887e-05
## 7435    Jeff Foust                glover    35 1573821 2.223887e-05
## 7436    Jeff Foust                   gov    35 1573821 2.223887e-05
## 7437    Jeff Foust               holiday    35 1573821 2.223887e-05
## 7438    Jeff Foust             honeycutt    35 1573821 2.223887e-05
## 7439    Jeff Foust          illustration    35 1573821 2.223887e-05
## 7440    Jeff Foust              imminent    35 1573821 2.223887e-05
## 7441    Jeff Foust            instructed    35 1573821 2.223887e-05
## 7442    Jeff Foust                 it’ll    35 1573821 2.223887e-05
## 7443    Jeff Foust                 jared    35 1573821 2.223887e-05
## 7444    Jeff Foust               jeffrey    35 1573821 2.223887e-05
## 7445    Jeff Foust                 jerry    35 1573821 2.223887e-05
## 7446    Jeff Foust                 juice    35 1573821 2.223887e-05
## 7447    Jeff Foust                    k2    35 1573821 2.223887e-05
## 7448    Jeff Foust                 karen    35 1573821 2.223887e-05
## 7449    Jeff Foust                kikina    35 1573821 2.223887e-05
## 7450    Jeff Foust              lowering    35 1573821 2.223887e-05
## 7451    Jeff Foust             maccallum    35 1573821 2.223887e-05
## 7452    Jeff Foust                magnus    35 1573821 2.223887e-05
## 7453    Jeff Foust              messages    35 1573821 2.223887e-05
## 7454    Jeff Foust               mynaric    35 1573821 2.223887e-05
## 7455    Jeff Foust                naming    35 1573821 2.223887e-05
## 7456    Jeff Foust              nelson’s    35 1573821 2.223887e-05
## 7457    Jeff Foust                  nose    35 1573821 2.223887e-05
## 7458    Jeff Foust               pioneer    35 1573821 2.223887e-05
## 7459    Jeff Foust                 plate    35 1573821 2.223887e-05
## 7460    Jeff Foust            protective    35 1573821 2.223887e-05
## 7461    Jeff Foust          ptscientists    35 1573821 2.223887e-05
## 7462    Jeff Foust                  rays    35 1573821 2.223887e-05
## 7463    Jeff Foust               reboost    35 1573821 2.223887e-05
## 7464    Jeff Foust            recommends    35 1573821 2.223887e-05
## 7465    Jeff Foust            reflecting    35 1573821 2.223887e-05
## 7466    Jeff Foust         refurbishment    35 1573821 2.223887e-05
## 7467    Jeff Foust              repeated    35 1573821 2.223887e-05
## 7468    Jeff Foust             restoring    35 1573821 2.223887e-05
## 7469    Jeff Foust             restricts    35 1573821 2.223887e-05
## 7470    Jeff Foust            retrograde    35 1573821 2.223887e-05
## 7471    Jeff Foust                 risky    35 1573821 2.223887e-05
## 7472    Jeff Foust            separating    35 1573821 2.223887e-05
## 7473    Jeff Foust                 shane    35 1573821 2.223887e-05
## 7474    Jeff Foust              shetland    35 1573821 2.223887e-05
## 7475    Jeff Foust                skills    35 1573821 2.223887e-05
## 7476    Jeff Foust                   smc    35 1573821 2.223887e-05
## 7477    Jeff Foust              smoothly    35 1573821 2.223887e-05
## 7478    Jeff Foust               space19    35 1573821 2.223887e-05
## 7479    Jeff Foust           spacemobile    35 1573821 2.223887e-05
## 7480    Jeff Foust                 stood    35 1573821 2.223887e-05
## 7481    Jeff Foust                 strap    35 1573821 2.223887e-05
## 7482    Jeff Foust              sturckow    35 1573821 2.223887e-05
## 7483    Jeff Foust             supporter    35 1573821 2.223887e-05
## 7484    Jeff Foust                 swiss    35 1573821 2.223887e-05
## 7485    Jeff Foust              system’s    35 1573821 2.223887e-05
## 7486    Jeff Foust                taylor    35 1573821 2.223887e-05
## 7487    Jeff Foust          transmitting    35 1573821 2.223887e-05
## 7488    Jeff Foust              unlocked    35 1573821 2.223887e-05
## 7489    Jeff Foust                    vc    35 1573821 2.223887e-05
## 7490    Jeff Foust               victory    35 1573821 2.223887e-05
## 7491    Jeff Foust               watkins    35 1573821 2.223887e-05
## 7492    Jeff Foust              workload    35 1573821 2.223887e-05
## 7493  Sandra Erwin              academia    35  716353 4.885859e-05
## 7494  Sandra Erwin              achieved    35  716353 4.885859e-05
## 7495  Sandra Erwin                andrew    35  716353 4.885859e-05
## 7496  Sandra Erwin              atlantic    35  716353 4.885859e-05
## 7497  Sandra Erwin            background    35  716353 4.885859e-05
## 7498  Sandra Erwin                  bold    35  716353 4.885859e-05
## 7499  Sandra Erwin                  bush    35  716353 4.885859e-05
## 7500  Sandra Erwin                 butow    35  716353 4.885859e-05
## 7501  Sandra Erwin             candidate    35  716353 4.885859e-05
## 7502  Sandra Erwin             complaint    35  716353 4.885859e-05
## 7503  Sandra Erwin          consolidated    35  716353 4.885859e-05
## 7504  Sandra Erwin               content    35  716353 4.885859e-05
## 7505  Sandra Erwin             convinced    35  716353 4.885859e-05
## 7506  Sandra Erwin                  crow    35  716353 4.885859e-05
## 7507  Sandra Erwin                daniel    35  716353 4.885859e-05
## 7508  Sandra Erwin              democrat    35  716353 4.885859e-05
## 7509  Sandra Erwin           disruptions    35  716353 4.885859e-05
## 7510  Sandra Erwin            envisioned    35  716353 4.885859e-05
## 7511  Sandra Erwin                  fail    35  716353 4.885859e-05
## 7512  Sandra Erwin                  flat    35  716353 4.885859e-05
## 7513  Sandra Erwin             installed    35  716353 4.885859e-05
## 7514  Sandra Erwin                  junk    35  716353 4.885859e-05
## 7515  Sandra Erwin                  love    35  716353 4.885859e-05
## 7516  Sandra Erwin                   mac    35  716353 4.885859e-05
## 7517  Sandra Erwin            modernized    35  716353 4.885859e-05
## 7518  Sandra Erwin          modification    35  716353 4.885859e-05
## 7519  Sandra Erwin               nominee    35  716353 4.885859e-05
## 7520  Sandra Erwin               orbit’s    35  716353 4.885859e-05
## 7521  Sandra Erwin                 party    35  716353 4.885859e-05
## 7522  Sandra Erwin              pictures    35  716353 4.885859e-05
## 7523  Sandra Erwin                  plug    35  716353 4.885859e-05
## 7524  Sandra Erwin                poised    35  716353 4.885859e-05
## 7525  Sandra Erwin               pursued    35  716353 4.885859e-05
## 7526  Sandra Erwin                  read    35  716353 4.885859e-05
## 7527  Sandra Erwin             reference    35  716353 4.885859e-05
## 7528  Sandra Erwin            reorganize    35  716353 4.885859e-05
## 7529  Sandra Erwin                retain    35  716353 4.885859e-05
## 7530  Sandra Erwin             selecting    35  716353 4.885859e-05
## 7531  Sandra Erwin                 sharp    35  716353 4.885859e-05
## 7532  Sandra Erwin                shield    35  716353 4.885859e-05
## 7533  Sandra Erwin           speculation    35  716353 4.885859e-05
## 7534  Sandra Erwin                speeds    35  716353 4.885859e-05
## 7535  Sandra Erwin                switch    35  716353 4.885859e-05
## 7536  Sandra Erwin          transparency    35  716353 4.885859e-05
## 7537  Sandra Erwin              trillion    35  716353 4.885859e-05
## 7538  Sandra Erwin              waveform    35  716353 4.885859e-05
## 7539  Sandra Erwin                   wsf    35  716353 4.885859e-05
## 7540  Sandra Erwin                you’ll    35  716353 4.885859e-05
## 7541    Jeff Foust                   abs    34 1573821 2.160347e-05
## 7542    Jeff Foust           agriculture    34 1573821 2.160347e-05
## 7543    Jeff Foust                aiming    34 1573821 2.160347e-05
## 7544    Jeff Foust                 aloft    34 1573821 2.160347e-05
## 7545    Jeff Foust              analyzed    34 1573821 2.160347e-05
## 7546    Jeff Foust               andrews    34 1573821 2.160347e-05
## 7547    Jeff Foust          anticipation    34 1573821 2.160347e-05
## 7548    Jeff Foust            applicable    34 1573821 2.160347e-05
## 7549    Jeff Foust                arabia    34 1573821 2.160347e-05
## 7550    Jeff Foust                  army    34 1573821 2.160347e-05
## 7551    Jeff Foust                  beat    34 1573821 2.160347e-05
## 7552    Jeff Foust                bishop    34 1573821 2.160347e-05
## 7553    Jeff Foust               board’s    34 1573821 2.160347e-05
## 7554    Jeff Foust                bremen    34 1573821 2.160347e-05
## 7555    Jeff Foust                  buzz    34 1573821 2.160347e-05
## 7556    Jeff Foust              calendar    34 1573821 2.160347e-05
## 7557    Jeff Foust               cassada    34 1573821 2.160347e-05
## 7558    Jeff Foust             celestial    34 1573821 2.160347e-05
## 7559    Jeff Foust              claiming    34 1573821 2.160347e-05
## 7560    Jeff Foust              clearing    34 1573821 2.160347e-05
## 7561    Jeff Foust          commissioned    34 1573821 2.160347e-05
## 7562    Jeff Foust        considerations    34 1573821 2.160347e-05
## 7563    Jeff Foust          continuation    34 1573821 2.160347e-05
## 7564    Jeff Foust            convention    34 1573821 2.160347e-05
## 7565    Jeff Foust                  dana    34 1573821 2.160347e-05
## 7566    Jeff Foust                  deck    34 1573821 2.160347e-05
## 7567    Jeff Foust          deliberately    34 1573821 2.160347e-05
## 7568    Jeff Foust                desert    34 1573821 2.160347e-05
## 7569    Jeff Foust             detecting    34 1573821 2.160347e-05
## 7570    Jeff Foust                drives    34 1573821 2.160347e-05
## 7571    Jeff Foust                eileen    34 1573821 2.160347e-05
## 7572    Jeff Foust            enthusiasm    34 1573821 2.160347e-05
## 7573    Jeff Foust              exotrail    34 1573821 2.160347e-05
## 7574    Jeff Foust           farnborough    34 1573821 2.160347e-05
## 7575    Jeff Foust                fincke    34 1573821 2.160347e-05
## 7576    Jeff Foust            flashlight    34 1573821 2.160347e-05
## 7577    Jeff Foust                gained    34 1573821 2.160347e-05
## 7578    Jeff Foust                  hurt    34 1573821 2.160347e-05
## 7579    Jeff Foust           importantly    34 1573821 2.160347e-05
## 7580    Jeff Foust           innovations    34 1573821 2.160347e-05
## 7581    Jeff Foust               invited    34 1573821 2.160347e-05
## 7582    Jeff Foust                  kate    34 1573821 2.160347e-05
## 7583    Jeff Foust                  lean    34 1573821 2.160347e-05
## 7584    Jeff Foust                  loop    34 1573821 2.160347e-05
## 7585    Jeff Foust              mandated    34 1573821 2.160347e-05
## 7586    Jeff Foust               marking    34 1573821 2.160347e-05
## 7587    Jeff Foust           measurement    34 1573821 2.160347e-05
## 7588    Jeff Foust             ministers    34 1573821 2.160347e-05
## 7589    Jeff Foust                 modes    34 1573821 2.160347e-05
## 7590    Jeff Foust                  napa    34 1573821 2.160347e-05
## 7591    Jeff Foust             obtaining    34 1573821 2.160347e-05
## 7592    Jeff Foust           overarching    34 1573821 2.160347e-05
## 7593    Jeff Foust              overview    34 1573821 2.160347e-05
## 7594    Jeff Foust               pesquet    34 1573821 2.160347e-05
## 7595    Jeff Foust              promoted    34 1573821 2.160347e-05
## 7596    Jeff Foust               raymond    34 1573821 2.160347e-05
## 7597    Jeff Foust            reconsider    34 1573821 2.160347e-05
## 7598    Jeff Foust           remediation    34 1573821 2.160347e-05
## 7599    Jeff Foust           renaissance    34 1573821 2.160347e-05
## 7600    Jeff Foust             retaining    34 1573821 2.160347e-05
## 7601    Jeff Foust               reusing    34 1573821 2.160347e-05
## 7602    Jeff Foust              shooting    34 1573821 2.160347e-05
## 7603    Jeff Foust             similarly    34 1573821 2.160347e-05
## 7604    Jeff Foust          spaceflights    34 1573821 2.160347e-05
## 7605    Jeff Foust        spaceshiptwo’s    34 1573821 2.160347e-05
## 7606    Jeff Foust                 stack    34 1573821 2.160347e-05
## 7607    Jeff Foust               stealth    34 1573821 2.160347e-05
## 7608    Jeff Foust       straightforward    34 1573821 2.160347e-05
## 7609    Jeff Foust        subcommittee’s    34 1573821 2.160347e-05
## 7610    Jeff Foust          sufficiently    34 1573821 2.160347e-05
## 7611    Jeff Foust              sullivan    34 1573821 2.160347e-05
## 7612    Jeff Foust                 swift    34 1573821 2.160347e-05
## 7613    Jeff Foust            testifying    34 1573821 2.160347e-05
## 7614    Jeff Foust               tornado    34 1573821 2.160347e-05
## 7615    Jeff Foust          transferring    34 1573821 2.160347e-05
## 7616    Jeff Foust             undertake    34 1573821 2.160347e-05
## 7617    Jeff Foust                undock    34 1573821 2.160347e-05
## 7618    Jeff Foust             unrelated    34 1573821 2.160347e-05
## 7619    Jeff Foust                watson    34 1573821 2.160347e-05
## 7620    Jeff Foust               witness    34 1573821 2.160347e-05
## 7621  Sandra Erwin              acquires    34  716353 4.746263e-05
## 7622  Sandra Erwin               artemis    34  716353 4.746263e-05
## 7623  Sandra Erwin                   aws    34  716353 4.746263e-05
## 7624  Sandra Erwin                 bands    34  716353 4.746263e-05
## 7625  Sandra Erwin                  beam    34  716353 4.746263e-05
## 7626  Sandra Erwin                begins    34  716353 4.746263e-05
## 7627  Sandra Erwin               buckley    34  716353 4.746263e-05
## 7628  Sandra Erwin                 cadre    34  716353 4.746263e-05
## 7629  Sandra Erwin                 calif    34  716353 4.746263e-05
## 7630  Sandra Erwin            centimeter    34  716353 4.746263e-05
## 7631  Sandra Erwin                 cited    34  716353 4.746263e-05
## 7632  Sandra Erwin            clearances    34  716353 4.746263e-05
## 7633  Sandra Erwin            comparison    34  716353 4.746263e-05
## 7634  Sandra Erwin             conceived    34  716353 4.746263e-05
## 7635  Sandra Erwin             congested    34  716353 4.746263e-05
## 7636  Sandra Erwin               crucial    34  716353 4.746263e-05
## 7637  Sandra Erwin               dealing    34  716353 4.746263e-05
## 7638  Sandra Erwin                defeat    34  716353 4.746263e-05
## 7639  Sandra Erwin            defendable    34  716353 4.746263e-05
## 7640  Sandra Erwin           deployments    34  716353 4.746263e-05
## 7641  Sandra Erwin               drawing    34  716353 4.746263e-05
## 7642  Sandra Erwin                effect    34  716353 4.746263e-05
## 7643  Sandra Erwin            efficiency    34  716353 4.746263e-05
## 7644  Sandra Erwin              endorsed    34  716353 4.746263e-05
## 7645  Sandra Erwin          enhancedview    34  716353 4.746263e-05
## 7646  Sandra Erwin              enormous    34  716353 4.746263e-05
## 7647  Sandra Erwin         entrepreneurs    34  716353 4.746263e-05
## 7648  Sandra Erwin                export    34  716353 4.746263e-05
## 7649  Sandra Erwin              familiar    34  716353 4.746263e-05
## 7650  Sandra Erwin                   hac    34  716353 4.746263e-05
## 7651  Sandra Erwin                hasn’t    34  716353 4.746263e-05
## 7652  Sandra Erwin           implemented    34  716353 4.746263e-05
## 7653  Sandra Erwin          improvements    34  716353 4.746263e-05
## 7654  Sandra Erwin           incorporate    34  716353 4.746263e-05
## 7655  Sandra Erwin             intensive    34  716353 4.746263e-05
## 7656  Sandra Erwin               interim    34  716353 4.746263e-05
## 7657  Sandra Erwin                    ir    34  716353 4.746263e-05
## 7658  Sandra Erwin                 jason    34  716353 4.746263e-05
## 7659  Sandra Erwin               leolabs    34  716353 4.746263e-05
## 7660  Sandra Erwin                lifted    34  716353 4.746263e-05
## 7661  Sandra Erwin                 lloyd    34  716353 4.746263e-05
## 7662  Sandra Erwin                 lober    34  716353 4.746263e-05
## 7663  Sandra Erwin                locate    34  716353 4.746263e-05
## 7664  Sandra Erwin             microsoft    34  716353 4.746263e-05
## 7665  Sandra Erwin                  note    34  716353 4.746263e-05
## 7666  Sandra Erwin                openly    34  716353 4.746263e-05
## 7667  Sandra Erwin                  pads    34  716353 4.746263e-05
## 7668  Sandra Erwin                paying    34  716353 4.746263e-05
## 7669  Sandra Erwin                person    34  716353 4.746263e-05
## 7670  Sandra Erwin              prospect    34  716353 4.746263e-05
## 7671  Sandra Erwin                reagan    34  716353 4.746263e-05
## 7672  Sandra Erwin              reflects    34  716353 4.746263e-05
## 7673  Sandra Erwin               savings    34  716353 4.746263e-05
## 7674  Sandra Erwin                 shoot    34  716353 4.746263e-05
## 7675  Sandra Erwin                  shut    34  716353 4.746263e-05
## 7676  Sandra Erwin           simulations    34  716353 4.746263e-05
## 7677  Sandra Erwin                 spire    34  716353 4.746263e-05
## 7678  Sandra Erwin                stated    34  716353 4.746263e-05
## 7679  Sandra Erwin               theater    34  716353 4.746263e-05
## 7680  Sandra Erwin             transfers    34  716353 4.746263e-05
## 7681  Sandra Erwin              tuesdays    34  716353 4.746263e-05
## 7682  Sandra Erwin                  twin    34  716353 4.746263e-05
## 7683  Sandra Erwin              upgraded    34  716353 4.746263e-05
## 7684  Sandra Erwin                walker    34  716353 4.746263e-05
## 7685  Sandra Erwin               wallops    34  716353 4.746263e-05
## 7686  Sandra Erwin               watched    34  716353 4.746263e-05
## 7687  Sandra Erwin              wouldn’t    34  716353 4.746263e-05
## 7688    Jeff Foust                 1980s    33 1573821 2.096808e-05
## 7689    Jeff Foust                    1c    33 1573821 2.096808e-05
## 7690    Jeff Foust                    2b    33 1573821 2.096808e-05
## 7691    Jeff Foust                    6u    33 1573821 2.096808e-05
## 7692    Jeff Foust        administrative    33 1573821 2.096808e-05
## 7693    Jeff Foust               analyst    33 1573821 2.096808e-05
## 7694    Jeff Foust                 angle    33 1573821 2.096808e-05
## 7695    Jeff Foust                   apl    33 1573821 2.096808e-05
## 7696    Jeff Foust             appointed    33 1573821 2.096808e-05
## 7697    Jeff Foust         appropriately    33 1573821 2.096808e-05
## 7698    Jeff Foust                  boat    33 1573821 2.096808e-05
## 7699    Jeff Foust                cancer    33 1573821 2.096808e-05
## 7700    Jeff Foust               chandra    33 1573821 2.096808e-05
## 7701    Jeff Foust                clarke    33 1573821 2.096808e-05
## 7702    Jeff Foust               clinton    33 1573821 2.096808e-05
## 7703    Jeff Foust             concludes    33 1573821 2.096808e-05
## 7704    Jeff Foust            contracted    33 1573821 2.096808e-05
## 7705    Jeff Foust              credible    33 1573821 2.096808e-05
## 7706    Jeff Foust            deliveries    33 1573821 2.096808e-05
## 7707    Jeff Foust            difficulty    33 1573821 2.096808e-05
## 7708    Jeff Foust         documentation    33 1573821 2.096808e-05
## 7709    Jeff Foust             elections    33 1573821 2.096808e-05
## 7710    Jeff Foust              envision    33 1573821 2.096808e-05
## 7711    Jeff Foust                  fate    33 1573821 2.096808e-05
## 7712    Jeff Foust              figuring    33 1573821 2.096808e-05
## 7713    Jeff Foust                 flyer    33 1573821 2.096808e-05
## 7714    Jeff Foust                 gamma    33 1573821 2.096808e-05
## 7715    Jeff Foust                 ghost    33 1573821 2.096808e-05
## 7716    Jeff Foust               group’s    33 1573821 2.096808e-05
## 7717    Jeff Foust                  harm    33 1573821 2.096808e-05
## 7718    Jeff Foust               harmony    33 1573821 2.096808e-05
## 7719    Jeff Foust                 holes    33 1573821 2.096808e-05
## 7720    Jeff Foust                   hop    33 1573821 2.096808e-05
## 7721    Jeff Foust              impacted    33 1573821 2.096808e-05
## 7722    Jeff Foust          institutions    33 1573821 2.096808e-05
## 7723    Jeff Foust              judgment    33 1573821 2.096808e-05
## 7724    Jeff Foust               komarov    33 1573821 2.096808e-05
## 7725    Jeff Foust                lowest    33 1573821 2.096808e-05
## 7726    Jeff Foust                 lunah    33 1573821 2.096808e-05
## 7727    Jeff Foust                  mary    33 1573821 2.096808e-05
## 7728    Jeff Foust               matched    33 1573821 2.096808e-05
## 7729    Jeff Foust            mitigating    33 1573821 2.096808e-05
## 7730    Jeff Foust                 miura    33 1573821 2.096808e-05
## 7731    Jeff Foust                modern    33 1573821 2.096808e-05
## 7732    Jeff Foust             motivated    33 1573821 2.096808e-05
## 7733    Jeff Foust               odyssey    33 1573821 2.096808e-05
## 7734    Jeff Foust           orientation    33 1573821 2.096808e-05
## 7735    Jeff Foust             partnered    33 1573821 2.096808e-05
## 7736    Jeff Foust            pittsburgh    33 1573821 2.096808e-05
## 7737    Jeff Foust                   pld    33 1573821 2.096808e-05
## 7738    Jeff Foust             proximity    33 1573821 2.096808e-05
## 7739    Jeff Foust                ranked    33 1573821 2.096808e-05
## 7740    Jeff Foust               reflown    33 1573821 2.096808e-05
## 7741    Jeff Foust              register    33 1573821 2.096808e-05
## 7742    Jeff Foust                 royal    33 1573821 2.096808e-05
## 7743    Jeff Foust                rubins    33 1573821 2.096808e-05
## 7744    Jeff Foust                 santa    33 1573821 2.096808e-05
## 7745    Jeff Foust                  sbag    33 1573821 2.096808e-05
## 7746    Jeff Foust                 scout    33 1573821 2.096808e-05
## 7747    Jeff Foust                 seals    33 1573821 2.096808e-05
## 7748    Jeff Foust                  situ    33 1573821 2.096808e-05
## 7749    Jeff Foust           starliner’s    33 1573821 2.096808e-05
## 7750    Jeff Foust              straight    33 1573821 2.096808e-05
## 7751    Jeff Foust           suitability    33 1573821 2.096808e-05
## 7752    Jeff Foust            suspending    33 1573821 2.096808e-05
## 7753    Jeff Foust               synergy    33 1573821 2.096808e-05
## 7754    Jeff Foust              thousand    33 1573821 2.096808e-05
## 7755    Jeff Foust                  tiny    33 1573821 2.096808e-05
## 7756    Jeff Foust            titusville    33 1573821 2.096808e-05
## 7757    Jeff Foust                 verge    33 1573821 2.096808e-05
## 7758    Jeff Foust             volatiles    33 1573821 2.096808e-05
## 7759    Jeff Foust               wearing    33 1573821 2.096808e-05
## 7760    Jeff Foust                 zones    33 1573821 2.096808e-05
## 7761  Sandra Erwin           aeronautics    33  716353 4.606667e-05
## 7762  Sandra Erwin               agility    33  716353 4.606667e-05
## 7763  Sandra Erwin             americans    33  716353 4.606667e-05
## 7764  Sandra Erwin                  asat    33  716353 4.606667e-05
## 7765  Sandra Erwin               billets    33  716353 4.606667e-05
## 7766  Sandra Erwin                caught    33  716353 4.606667e-05
## 7767  Sandra Erwin         consideration    33  716353 4.606667e-05
## 7768  Sandra Erwin             country’s    33  716353 4.606667e-05
## 7769  Sandra Erwin             directing    33  716353 4.606667e-05
## 7770  Sandra Erwin                    ed    33  716353 4.606667e-05
## 7771  Sandra Erwin            elliptical    33  716353 4.606667e-05
## 7772  Sandra Erwin                 fired    33  716353 4.606667e-05
## 7773  Sandra Erwin                 hands    33  716353 4.606667e-05
## 7774  Sandra Erwin              heritage    33  716353 4.606667e-05
## 7775  Sandra Erwin                  icbm    33  716353 4.606667e-05
## 7776  Sandra Erwin               imagine    33  716353 4.606667e-05
## 7777  Sandra Erwin                indian    33  716353 4.606667e-05
## 7778  Sandra Erwin          institutions    33  716353 4.606667e-05
## 7779  Sandra Erwin                london    33  716353 4.606667e-05
## 7780  Sandra Erwin                  loss    33  716353 4.606667e-05
## 7781  Sandra Erwin              material    33  716353 4.606667e-05
## 7782  Sandra Erwin               mention    33  716353 4.606667e-05
## 7783  Sandra Erwin                   mod    33  716353 4.606667e-05
## 7784  Sandra Erwin                navy’s    33  716353 4.606667e-05
## 7785  Sandra Erwin                  okla    33  716353 4.606667e-05
## 7786  Sandra Erwin            pathfinder    33  716353 4.606667e-05
## 7787  Sandra Erwin               pleased    33  716353 4.606667e-05
## 7788  Sandra Erwin           projections    33  716353 4.606667e-05
## 7789  Sandra Erwin               promise    33  716353 4.606667e-05
## 7790  Sandra Erwin             promising    33  716353 4.606667e-05
## 7791  Sandra Erwin               publish    33  716353 4.606667e-05
## 7792  Sandra Erwin                  pull    33  716353 4.606667e-05
## 7793  Sandra Erwin              reaching    33  716353 4.606667e-05
## 7794  Sandra Erwin              relative    33  716353 4.606667e-05
## 7795  Sandra Erwin                relief    33  716353 4.606667e-05
## 7796  Sandra Erwin                rights    33  716353 4.606667e-05
## 7797  Sandra Erwin                  roth    33  716353 4.606667e-05
## 7798  Sandra Erwin                 ryals    33  716353 4.606667e-05
## 7799  Sandra Erwin                   sat    33  716353 4.606667e-05
## 7800  Sandra Erwin               shifted    33  716353 4.606667e-05
## 7801  Sandra Erwin                sierra    33  716353 4.606667e-05
## 7802  Sandra Erwin         subcontractor    33  716353 4.606667e-05
## 7803  Sandra Erwin               succeed    33  716353 4.606667e-05
## 7804  Sandra Erwin                tanker    33  716353 4.606667e-05
## 7805  Sandra Erwin                  tend    33  716353 4.606667e-05
## 7806  Sandra Erwin                 triad    33  716353 4.606667e-05
## 7807  Sandra Erwin                 unity    33  716353 4.606667e-05
## 7808  Sandra Erwin           unnecessary    33  716353 4.606667e-05
## 7809  Sandra Erwin              versions    33  716353 4.606667e-05
## 7810    Jeff Foust         acknowledging    32 1573821 2.033268e-05
## 7811    Jeff Foust              adelaide    32 1573821 2.033268e-05
## 7812    Jeff Foust                allies    32 1573821 2.033268e-05
## 7813    Jeff Foust                 apple    32 1573821 2.033268e-05
## 7814    Jeff Foust                assure    32 1573821 2.033268e-05
## 7815    Jeff Foust                 batch    32 1573821 2.033268e-05
## 7816    Jeff Foust                behalf    32 1573821 2.033268e-05
## 7817    Jeff Foust                binary    32 1573821 2.033268e-05
## 7818    Jeff Foust                booked    32 1573821 2.033268e-05
## 7819    Jeff Foust               breakup    32 1573821 2.033268e-05
## 7820    Jeff Foust            broomfield    32 1573821 2.033268e-05
## 7821    Jeff Foust             budgetary    32 1573821 2.033268e-05
## 7822    Jeff Foust                cached    32 1573821 2.033268e-05
## 7823    Jeff Foust              cleaning    32 1573821 2.033268e-05
## 7824    Jeff Foust            collective    32 1573821 2.033268e-05
## 7825    Jeff Foust          commission’s    32 1573821 2.033268e-05
## 7826    Jeff Foust             complaint    32 1573821 2.033268e-05
## 7827    Jeff Foust           conferences    32 1573821 2.033268e-05
## 7828    Jeff Foust               context    32 1573821 2.033268e-05
## 7829    Jeff Foust            critically    32 1573821 2.033268e-05
## 7830    Jeff Foust                 diego    32 1573821 2.033268e-05
## 7831    Jeff Foust            directives    32 1573821 2.033268e-05
## 7832    Jeff Foust             dominated    32 1573821 2.033268e-05
## 7833    Jeff Foust                 drift    32 1573821 2.033268e-05
## 7834    Jeff Foust            eliminated    32 1573821 2.033268e-05
## 7835    Jeff Foust             enactment    32 1573821 2.033268e-05
## 7836    Jeff Foust            energomash    32 1573821 2.033268e-05
## 7837    Jeff Foust              fairings    32 1573821 2.033268e-05
## 7838    Jeff Foust              families    32 1573821 2.033268e-05
## 7839    Jeff Foust               genesis    32 1573821 2.033268e-05
## 7840    Jeff Foust             goldstein    32 1573821 2.033268e-05
## 7841    Jeff Foust              harrison    32 1573821 2.033268e-05
## 7842    Jeff Foust                height    32 1573821 2.033268e-05
## 7843    Jeff Foust            impressive    32 1573821 2.033268e-05
## 7844    Jeff Foust            inevitable    32 1573821 2.033268e-05
## 7845    Jeff Foust                 janet    32 1573821 2.033268e-05
## 7846    Jeff Foust              krikalev    32 1573821 2.033268e-05
## 7847    Jeff Foust                 lands    32 1573821 2.033268e-05
## 7848    Jeff Foust                lasers    32 1573821 2.033268e-05
## 7849    Jeff Foust                  leag    32 1573821 2.033268e-05
## 7850    Jeff Foust                listen    32 1573821 2.033268e-05
## 7851    Jeff Foust                  luna    32 1573821 2.033268e-05
## 7852    Jeff Foust          magnetometer    32 1573821 2.033268e-05
## 7853    Jeff Foust                  marc    32 1573821 2.033268e-05
## 7854    Jeff Foust               matthew    32 1573821 2.033268e-05
## 7855    Jeff Foust            maturation    32 1573821 2.033268e-05
## 7856    Jeff Foust                 maven    32 1573821 2.033268e-05
## 7857    Jeff Foust               mcclain    32 1573821 2.033268e-05
## 7858    Jeff Foust              mcgregor    32 1573821 2.033268e-05
## 7859    Jeff Foust     megaconstellation    32 1573821 2.033268e-05
## 7860    Jeff Foust        micrometeoroid    32 1573821 2.033268e-05
## 7861    Jeff Foust              missiles    32 1573821 2.033268e-05
## 7862    Jeff Foust                    mo    32 1573821 2.033268e-05
## 7863    Jeff Foust                   mou    32 1573821 2.033268e-05
## 7864    Jeff Foust                    mx    32 1573821 2.033268e-05
## 7865    Jeff Foust                   o3b    32 1573821 2.033268e-05
## 7866    Jeff Foust                 omega    32 1573821 2.033268e-05
## 7867    Jeff Foust                optics    32 1573821 2.033268e-05
## 7868    Jeff Foust        organization’s    32 1573821 2.033268e-05
## 7869    Jeff Foust               permits    32 1573821 2.033268e-05
## 7870    Jeff Foust                   pin    32 1573821 2.033268e-05
## 7871    Jeff Foust               popular    32 1573821 2.033268e-05
## 7872    Jeff Foust             project’s    32 1573821 2.033268e-05
## 7873    Jeff Foust                rashid    32 1573821 2.033268e-05
## 7874    Jeff Foust                regard    32 1573821 2.033268e-05
## 7875    Jeff Foust                  sbir    32 1573821 2.033268e-05
## 7876    Jeff Foust                  seal    32 1573821 2.033268e-05
## 7877    Jeff Foust               serrano    32 1573821 2.033268e-05
## 7878    Jeff Foust                  seti    32 1573821 2.033268e-05
## 7879    Jeff Foust              shadowed    32 1573821 2.033268e-05
## 7880    Jeff Foust                skysat    32 1573821 2.033268e-05
## 7881    Jeff Foust                 snc’s    32 1573821 2.033268e-05
## 7882    Jeff Foust         spaceflight’s    32 1573821 2.033268e-05
## 7883    Jeff Foust           spaceplanes    32 1573821 2.033268e-05
## 7884    Jeff Foust              spectral    32 1573821 2.033268e-05
## 7885    Jeff Foust                sports    32 1573821 2.033268e-05
## 7886    Jeff Foust               sputnik    32 1573821 2.033268e-05
## 7887    Jeff Foust           stratollite    32 1573821 2.033268e-05
## 7888    Jeff Foust              succeeds    32 1573821 2.033268e-05
## 7889    Jeff Foust              switched    32 1573821 2.033268e-05
## 7890    Jeff Foust                tagsam    32 1573821 2.033268e-05
## 7891    Jeff Foust              tensions    32 1573821 2.033268e-05
## 7892    Jeff Foust                tenure    32 1573821 2.033268e-05
## 7893    Jeff Foust             tetroxide    32 1573821 2.033268e-05
## 7894    Jeff Foust              threaten    32 1573821 2.033268e-05
## 7895    Jeff Foust                titled    32 1573821 2.033268e-05
## 7896    Jeff Foust               treated    32 1573821 2.033268e-05
## 7897    Jeff Foust               trouble    32 1573821 2.033268e-05
## 7898    Jeff Foust              unfunded    32 1573821 2.033268e-05
## 7899    Jeff Foust                  urge    32 1573821 2.033268e-05
## 7900    Jeff Foust                waters    32 1573821 2.033268e-05
## 7901    Jeff Foust               winners    32 1573821 2.033268e-05
## 7902    Jeff Foust               wrapped    32 1573821 2.033268e-05
## 7903    Jeff Foust                  yuri    32 1573821 2.033268e-05
## 7904    Jeff Foust                zefiro    32 1573821 2.033268e-05
## 7905  Sandra Erwin          accelerating    32  716353 4.467071e-05
## 7906  Sandra Erwin           accommodate    32  716353 4.467071e-05
## 7907  Sandra Erwin             analyzing    32  716353 4.467071e-05
## 7908  Sandra Erwin              argument    32  716353 4.467071e-05
## 7909  Sandra Erwin               assumed    32  716353 4.467071e-05
## 7910  Sandra Erwin             avoidance    32  716353 4.467071e-05
## 7911  Sandra Erwin              awarding    32  716353 4.467071e-05
## 7912  Sandra Erwin            burgeoning    32  716353 4.467071e-05
## 7913  Sandra Erwin              canadian    32  716353 4.467071e-05
## 7914  Sandra Erwin             computers    32  716353 4.467071e-05
## 7915  Sandra Erwin              consumer    32  716353 4.467071e-05
## 7916  Sandra Erwin             corporate    32  716353 4.467071e-05
## 7917  Sandra Erwin                custom    32  716353 4.467071e-05
## 7918  Sandra Erwin            customized    32  716353 4.467071e-05
## 7919  Sandra Erwin                cycles    32  716353 4.467071e-05
## 7920  Sandra Erwin                device    32  716353 4.467071e-05
## 7921  Sandra Erwin          disadvantage    32  716353 4.467071e-05
## 7922  Sandra Erwin              embedded    32  716353 4.467071e-05
## 7923  Sandra Erwin            encouraged    32  716353 4.467071e-05
## 7924  Sandra Erwin                  fits    32  716353 4.467071e-05
## 7925  Sandra Erwin                formal    32  716353 4.467071e-05
## 7926  Sandra Erwin           frequencies    32  716353 4.467071e-05
## 7927  Sandra Erwin                   ftc    32  716353 4.467071e-05
## 7928  Sandra Erwin                  grew    32  716353 4.467071e-05
## 7929  Sandra Erwin            highlights    32  716353 4.467071e-05
## 7930  Sandra Erwin            incredibly    32  716353 4.467071e-05
## 7931  Sandra Erwin            incumbents    32  716353 4.467071e-05
## 7932  Sandra Erwin                  item    32  716353 4.467071e-05
## 7933  Sandra Erwin                karako    32  716353 4.467071e-05
## 7934  Sandra Erwin                   kim    32  716353 4.467071e-05
## 7935  Sandra Erwin               library    32  716353 4.467071e-05
## 7936  Sandra Erwin               package    32  716353 4.467071e-05
## 7937  Sandra Erwin                phases    32  716353 4.467071e-05
## 7938  Sandra Erwin           politically    32  716353 4.467071e-05
## 7939  Sandra Erwin                  pool    32  716353 4.467071e-05
## 7940  Sandra Erwin              portions    32  716353 4.467071e-05
## 7941  Sandra Erwin              protests    32  716353 4.467071e-05
## 7942  Sandra Erwin                  rank    32  716353 4.467071e-05
## 7943  Sandra Erwin                   raw    32  716353 4.467071e-05
## 7944  Sandra Erwin              rejected    32  716353 4.467071e-05
## 7945  Sandra Erwin           republicans    32  716353 4.467071e-05
## 7946  Sandra Erwin           researchers    32  716353 4.467071e-05
## 7947  Sandra Erwin        simultaneously    32  716353 4.467071e-05
## 7948  Sandra Erwin                   sky    32  716353 4.467071e-05
## 7949  Sandra Erwin            spaceports    32  716353 4.467071e-05
## 7950  Sandra Erwin             sponsored    32  716353 4.467071e-05
## 7951  Sandra Erwin                tenets    32  716353 4.467071e-05
## 7952  Sandra Erwin                 tetra    32  716353 4.467071e-05
## 7953  Sandra Erwin              troubled    32  716353 4.467071e-05
## 7954  Sandra Erwin                   udl    32  716353 4.467071e-05
## 7955  Sandra Erwin            vertically    32  716353 4.467071e-05
## 7956  Sandra Erwin               visible    32  716353 4.467071e-05
## 7957  Sandra Erwin                 visit    32  716353 4.467071e-05
## 7958  Sandra Erwin                window    32  716353 4.467071e-05
## 7959  Sandra Erwin                  word    32  716353 4.467071e-05
## 7960    Jeff Foust                actors    31 1573821 1.969728e-05
## 7961    Jeff Foust                  andy    31 1573821 1.969728e-05
## 7962    Jeff Foust         antisatellite    31 1573821 1.969728e-05
## 7963    Jeff Foust                   arc    31 1573821 1.969728e-05
## 7964    Jeff Foust               assured    31 1573821 1.969728e-05
## 7965    Jeff Foust              astranis    31 1573821 1.969728e-05
## 7966    Jeff Foust                 ast’s    31 1573821 1.969728e-05
## 7967    Jeff Foust               atlanta    31 1573821 1.969728e-05
## 7968    Jeff Foust                  atop    31 1573821 1.969728e-05
## 7969    Jeff Foust            attracting    31 1573821 1.969728e-05
## 7970    Jeff Foust                aurora    31 1573821 1.969728e-05
## 7971    Jeff Foust               barrier    31 1573821 1.969728e-05
## 7972    Jeff Foust              barriers    31 1573821 1.969728e-05
## 7973    Jeff Foust               berthed    31 1573821 1.969728e-05
## 7974    Jeff Foust                bidder    31 1573821 1.969728e-05
## 7975    Jeff Foust               blocked    31 1573821 1.969728e-05
## 7976    Jeff Foust                breton    31 1573821 1.969728e-05
## 7977    Jeff Foust                canyon    31 1573821 1.969728e-05
## 7978    Jeff Foust               catalog    31 1573821 1.969728e-05
## 7979    Jeff Foust              circular    31 1573821 1.969728e-05
## 7980    Jeff Foust               clarreo    31 1573821 1.969728e-05
## 7981    Jeff Foust                   col    31 1573821 1.969728e-05
## 7982    Jeff Foust          complicating    31 1573821 1.969728e-05
## 7983    Jeff Foust              contents    31 1573821 1.969728e-05
## 7984    Jeff Foust              damaging    31 1573821 1.969728e-05
## 7985    Jeff Foust               decides    31 1573821 1.969728e-05
## 7986    Jeff Foust             divisions    31 1573821 1.969728e-05
## 7987    Jeff Foust                    el    31 1573821 1.969728e-05
## 7988    Jeff Foust             executing    31 1573821 1.969728e-05
## 7989    Jeff Foust           experiences    31 1573821 1.969728e-05
## 7990    Jeff Foust          experiencing    31 1573821 1.969728e-05
## 7991    Jeff Foust                  eyes    31 1573821 1.969728e-05
## 7992    Jeff Foust              facebook    31 1573821 1.969728e-05
## 7993    Jeff Foust                 fails    31 1573821 1.969728e-05
## 7994    Jeff Foust                   fan    31 1573821 1.969728e-05
## 7995    Jeff Foust                   fee    31 1573821 1.969728e-05
## 7996    Jeff Foust             footprint    31 1573821 1.969728e-05
## 7997    Jeff Foust                foster    31 1573821 1.969728e-05
## 7998    Jeff Foust            groundwork    31 1573821 1.969728e-05
## 7999    Jeff Foust          habitability    31 1573821 1.969728e-05
## 8000    Jeff Foust                 haven    31 1573821 1.969728e-05
## 8001    Jeff Foust                 heomd    31 1573821 1.969728e-05
## 8002    Jeff Foust                hiatus    31 1573821 1.969728e-05
## 8003    Jeff Foust                   iaf    31 1573821 1.969728e-05
## 8004    Jeff Foust           indications    31 1573821 1.969728e-05
## 8005    Jeff Foust               inquiry    31 1573821 1.969728e-05
## 8006    Jeff Foust            ionosphere    31 1573821 1.969728e-05
## 8007    Jeff Foust                   jay    31 1573821 1.969728e-05
## 8008    Jeff Foust                   lal    31 1573821 1.969728e-05
## 8009    Jeff Foust              latitude    31 1573821 1.969728e-05
## 8010    Jeff Foust              lauretta    31 1573821 1.969728e-05
## 8011    Jeff Foust                manned    31 1573821 1.969728e-05
## 8012    Jeff Foust              mccarthy    31 1573821 1.969728e-05
## 8013    Jeff Foust              meantime    31 1573821 1.969728e-05
## 8014    Jeff Foust              metallic    31 1573821 1.969728e-05
## 8015    Jeff Foust                  mini    31 1573821 1.969728e-05
## 8016    Jeff Foust              obstacle    31 1573821 1.969728e-05
## 8017    Jeff Foust             offerings    31 1573821 1.969728e-05
## 8018    Jeff Foust               optimal    31 1573821 1.969728e-05
## 8019    Jeff Foust           orbitbeyond    31 1573821 1.969728e-05
## 8020    Jeff Foust              oxidizer    31 1573821 1.969728e-05
## 8021    Jeff Foust                player    31 1573821 1.969728e-05
## 8022    Jeff Foust             precedent    31 1573821 1.969728e-05
## 8023    Jeff Foust         precipitation    31 1573821 1.969728e-05
## 8024    Jeff Foust                pulled    31 1573821 1.969728e-05
## 8025    Jeff Foust          reservations    31 1573821 1.969728e-05
## 8026    Jeff Foust             resilient    31 1573821 1.969728e-05
## 8027    Jeff Foust               retains    31 1573821 1.969728e-05
## 8028    Jeff Foust                  ruag    31 1573821 1.969728e-05
## 8029    Jeff Foust                safyan    31 1573821 1.969728e-05
## 8030    Jeff Foust                saving    31 1573821 1.969728e-05
## 8031    Jeff Foust            selections    31 1573821 1.969728e-05
## 8032    Jeff Foust                silent    31 1573821 1.969728e-05
## 8033    Jeff Foust             simulated    31 1573821 1.969728e-05
## 8034    Jeff Foust              staffing    31 1573821 1.969728e-05
## 8035    Jeff Foust              sticking    31 1573821 1.969728e-05
## 8036    Jeff Foust                theory    31 1573821 1.969728e-05
## 8037    Jeff Foust                 valid    31 1573821 1.969728e-05
## 8038    Jeff Foust            visibility    31 1573821 1.969728e-05
## 8039    Jeff Foust                  wake    31 1573821 1.969728e-05
## 8040    Jeff Foust            weaknesses    31 1573821 1.969728e-05
## 8041    Jeff Foust                weigel    31 1573821 1.969728e-05
## 8042  Sandra Erwin                  21st    31  716353 4.327475e-05
## 8043  Sandra Erwin                   a.m    31  716353 4.327475e-05
## 8044  Sandra Erwin            acceptable    31  716353 4.327475e-05
## 8045  Sandra Erwin            appearance    31  716353 4.327475e-05
## 8046  Sandra Erwin                  asia    31  716353 4.327475e-05
## 8047  Sandra Erwin                   baa    31  716353 4.327475e-05
## 8048  Sandra Erwin                backup    31  716353 4.327475e-05
## 8049  Sandra Erwin                behalf    31  716353 4.327475e-05
## 8050  Sandra Erwin                border    31  716353 4.327475e-05
## 8051  Sandra Erwin                caucus    31  716353 4.327475e-05
## 8052  Sandra Erwin               century    31  716353 4.327475e-05
## 8053  Sandra Erwin                 chair    31  716353 4.327475e-05
## 8054  Sandra Erwin                 cheap    31  716353 4.327475e-05
## 8055  Sandra Erwin             cognitive    31  716353 4.327475e-05
## 8056  Sandra Erwin            collecting    31  716353 4.327475e-05
## 8057  Sandra Erwin            crosslinks    31  716353 4.327475e-05
## 8058  Sandra Erwin               debated    31  716353 4.327475e-05
## 8059  Sandra Erwin                 debut    31  716353 4.327475e-05
## 8060  Sandra Erwin               decides    31  716353 4.327475e-05
## 8061  Sandra Erwin               defence    31  716353 4.327475e-05
## 8062  Sandra Erwin             evolution    31  716353 4.327475e-05
## 8063  Sandra Erwin              expenses    31  716353 4.327475e-05
## 8064  Sandra Erwin               fanning    31  716353 4.327475e-05
## 8065  Sandra Erwin                 fcc’s    31  716353 4.327475e-05
## 8066  Sandra Erwin                 flies    31  716353 4.327475e-05
## 8067  Sandra Erwin             footprint    31  716353 4.327475e-05
## 8068  Sandra Erwin                french    31  716353 4.327475e-05
## 8069  Sandra Erwin              globally    31  716353 4.327475e-05
## 8070  Sandra Erwin                hunter    31  716353 4.327475e-05
## 8071  Sandra Erwin              impacted    31  716353 4.327475e-05
## 8072  Sandra Erwin            incentives    31  716353 4.327475e-05
## 8073  Sandra Erwin               install    31  716353 4.327475e-05
## 8074  Sandra Erwin               kestrel    31  716353 4.327475e-05
## 8075  Sandra Erwin                 lives    31  716353 4.327475e-05
## 8076  Sandra Erwin              matching    31  716353 4.327475e-05
## 8077  Sandra Erwin                 meets    31  716353 4.327475e-05
## 8078  Sandra Erwin                  otas    31  716353 4.327475e-05
## 8079  Sandra Erwin              outdated    31  716353 4.327475e-05
## 8080  Sandra Erwin             ownership    31  716353 4.327475e-05
## 8081  Sandra Erwin               parties    31  716353 4.327475e-05
## 8082  Sandra Erwin             pentecost    31  716353 4.327475e-05
## 8083  Sandra Erwin              personal    31  716353 4.327475e-05
## 8084  Sandra Erwin              prepares    31  716353 4.327475e-05
## 8085  Sandra Erwin              properly    31  716353 4.327475e-05
## 8086  Sandra Erwin                 proud    31  716353 4.327475e-05
## 8087  Sandra Erwin               realize    31  716353 4.327475e-05
## 8088  Sandra Erwin               redwire    31  716353 4.327475e-05
## 8089  Sandra Erwin                relied    31  716353 4.327475e-05
## 8090  Sandra Erwin           reorganized    31  716353 4.327475e-05
## 8091  Sandra Erwin                reused    31  716353 4.327475e-05
## 8092  Sandra Erwin               revised    31  716353 4.327475e-05
## 8093  Sandra Erwin                 scout    31  716353 4.327475e-05
## 8094  Sandra Erwin               secured    31  716353 4.327475e-05
## 8095  Sandra Erwin                  shop    31  716353 4.327475e-05
## 8096  Sandra Erwin                 signs    31  716353 4.327475e-05
## 8097  Sandra Erwin          stakeholders    31  716353 4.327475e-05
## 8098  Sandra Erwin                    sv    31  716353 4.327475e-05
## 8099  Sandra Erwin               tasking    31  716353 4.327475e-05
## 8100  Sandra Erwin               twitter    31  716353 4.327475e-05
## 8101  Sandra Erwin             ukrainian    31  716353 4.327475e-05
## 8102  Sandra Erwin               uniform    31  716353 4.327475e-05
## 8103  Sandra Erwin                  wfov    31  716353 4.327475e-05
## 8104    Jeff Foust             abandoned    30 1573821 1.906189e-05
## 8105    Jeff Foust            accurately    30 1573821 1.906189e-05
## 8106    Jeff Foust                   ace    30 1573821 1.906189e-05
## 8107    Jeff Foust               answers    30 1573821 1.906189e-05
## 8108    Jeff Foust                  apex    30 1573821 1.906189e-05
## 8109    Jeff Foust         appropriation    30 1573821 1.906189e-05
## 8110    Jeff Foust                   bag    30 1573821 1.906189e-05
## 8111    Jeff Foust                 barry    30 1573821 1.906189e-05
## 8112    Jeff Foust                battle    30 1573821 1.906189e-05
## 8113    Jeff Foust                  bell    30 1573821 1.906189e-05
## 8114    Jeff Foust            beneficial    30 1573821 1.906189e-05
## 8115    Jeff Foust                   bin    30 1573821 1.906189e-05
## 8116    Jeff Foust               borisov    30 1573821 1.906189e-05
## 8117    Jeff Foust               britain    30 1573821 1.906189e-05
## 8118    Jeff Foust              capsules    30 1573821 1.906189e-05
## 8119    Jeff Foust             celebrate    30 1573821 1.906189e-05
## 8120    Jeff Foust              charging    30 1573821 1.906189e-05
## 8121    Jeff Foust           circumlunar    30 1573821 1.906189e-05
## 8122    Jeff Foust             cleveland    30 1573821 1.906189e-05
## 8123    Jeff Foust         collaborative    30 1573821 1.906189e-05
## 8124    Jeff Foust         commissioners    30 1573821 1.906189e-05
## 8125    Jeff Foust         compatibility    30 1573821 1.906189e-05
## 8126    Jeff Foust         complications    30 1573821 1.906189e-05
## 8127    Jeff Foust              confirms    30 1573821 1.906189e-05
## 8128    Jeff Foust       congratulations    30 1573821 1.906189e-05
## 8129    Jeff Foust               connect    30 1573821 1.906189e-05
## 8130    Jeff Foust           consumables    30 1573821 1.906189e-05
## 8131    Jeff Foust              consumer    30 1573821 1.906189e-05
## 8132    Jeff Foust                 curve    30 1573821 1.906189e-05
## 8133    Jeff Foust               decatur    30 1573821 1.906189e-05
## 8134    Jeff Foust       decommissioning    30 1573821 1.906189e-05
## 8135    Jeff Foust             decreased    30 1573821 1.906189e-05
## 8136    Jeff Foust             diplomacy    30 1573821 1.906189e-05
## 8137    Jeff Foust             diversify    30 1573821 1.906189e-05
## 8138    Jeff Foust                    dr    30 1573821 1.906189e-05
## 8139    Jeff Foust         entertainment    30 1573821 1.906189e-05
## 8140    Jeff Foust                 equal    30 1573821 1.906189e-05
## 8141    Jeff Foust               equator    30 1573821 1.906189e-05
## 8142    Jeff Foust            estimating    30 1573821 1.906189e-05
## 8143    Jeff Foust               expands    30 1573821 1.906189e-05
## 8144    Jeff Foust             expedited    30 1573821 1.906189e-05
## 8145    Jeff Foust            expressing    30 1573821 1.906189e-05
## 8146    Jeff Foust      extraterrestrial    30 1573821 1.906189e-05
## 8147    Jeff Foust        extravehicular    30 1573821 1.906189e-05
## 8148    Jeff Foust                 false    30 1573821 1.906189e-05
## 8149    Jeff Foust                 fiber    30 1573821 1.906189e-05
## 8150    Jeff Foust                filter    30 1573821 1.906189e-05
## 8151    Jeff Foust                  flag    30 1573821 1.906189e-05
## 8152    Jeff Foust              galaxies    30 1573821 1.906189e-05
## 8153    Jeff Foust                 gears    30 1573821 1.906189e-05
## 8154    Jeff Foust                gibson    30 1573821 1.906189e-05
## 8155    Jeff Foust                 globe    30 1573821 1.906189e-05
## 8156    Jeff Foust                 grams    30 1573821 1.906189e-05
## 8157    Jeff Foust                guests    30 1573821 1.906189e-05
## 8158    Jeff Foust                   heo    30 1573821 1.906189e-05
## 8159    Jeff Foust             highlight    30 1573821 1.906189e-05
## 8160    Jeff Foust                   ian    30 1573821 1.906189e-05
## 8161    Jeff Foust                  icon    30 1573821 1.906189e-05
## 8162    Jeff Foust               injured    30 1573821 1.906189e-05
## 8163    Jeff Foust              inspired    30 1573821 1.906189e-05
## 8164    Jeff Foust          intellectual    30 1573821 1.906189e-05
## 8165    Jeff Foust          interactions    30 1573821 1.906189e-05
## 8166    Jeff Foust                  jump    30 1573821 1.906189e-05
## 8167    Jeff Foust               knowing    30 1573821 1.906189e-05
## 8168    Jeff Foust                 lived    30 1573821 1.906189e-05
## 8169    Jeff Foust                    lt    30 1573821 1.906189e-05
## 8170    Jeff Foust                mackay    30 1573821 1.906189e-05
## 8171    Jeff Foust               mistake    30 1573821 1.906189e-05
## 8172    Jeff Foust                 nancy    30 1573821 1.906189e-05
## 8173    Jeff Foust             negotiate    30 1573821 1.906189e-05
## 8174    Jeff Foust                 newly    30 1573821 1.906189e-05
## 8175    Jeff Foust                  nick    30 1573821 1.906189e-05
## 8176    Jeff Foust               notices    30 1573821 1.906189e-05
## 8177    Jeff Foust              ovchinin    30 1573821 1.906189e-05
## 8178    Jeff Foust               picking    30 1573821 1.906189e-05
## 8179    Jeff Foust                polish    30 1573821 1.906189e-05
## 8180    Jeff Foust           prospecting    30 1573821 1.906189e-05
## 8181    Jeff Foust                proved    30 1573821 1.906189e-05
## 8182    Jeff Foust                  pump    30 1573821 1.906189e-05
## 8183    Jeff Foust              quantity    30 1573821 1.906189e-05
## 8184    Jeff Foust            quarantine    30 1573821 1.906189e-05
## 8185    Jeff Foust           radzanowski    30 1573821 1.906189e-05
## 8186    Jeff Foust              redacted    30 1573821 1.906189e-05
## 8187    Jeff Foust                refuel    30 1573821 1.906189e-05
## 8188    Jeff Foust                 sbirs    30 1573821 1.906189e-05
## 8189    Jeff Foust              scottish    30 1573821 1.906189e-05
## 8190    Jeff Foust              searches    30 1573821 1.906189e-05
## 8191    Jeff Foust                season    30 1573821 1.906189e-05
## 8192    Jeff Foust             singapore    30 1573821 1.906189e-05
## 8193    Jeff Foust               sofia’s    30 1573821 1.906189e-05
## 8194    Jeff Foust         spacenews.com    30 1573821 1.906189e-05
## 8195    Jeff Foust               speaker    30 1573821 1.906189e-05
## 8196    Jeff Foust                 spice    30 1573821 1.906189e-05
## 8197    Jeff Foust               staging    30 1573821 1.906189e-05
## 8198    Jeff Foust            starhopper    30 1573821 1.906189e-05
## 8199    Jeff Foust                 stops    30 1573821 1.906189e-05
## 8200    Jeff Foust             strongest    30 1573821 1.906189e-05
## 8201    Jeff Foust            structured    30 1573821 1.906189e-05
## 8202    Jeff Foust                traced    30 1573821 1.906189e-05
## 8203    Jeff Foust                trades    30 1573821 1.906189e-05
## 8204    Jeff Foust             transform    30 1573821 1.906189e-05
## 8205    Jeff Foust               turkish    30 1573821 1.906189e-05
## 8206    Jeff Foust                urgent    30 1573821 1.906189e-05
## 8207    Jeff Foust                 vague    30 1573821 1.906189e-05
## 8208    Jeff Foust               vollmer    30 1573821 1.906189e-05
## 8209    Jeff Foust                weeden    30 1573821 1.906189e-05
## 8210    Jeff Foust        weightlessness    30 1573821 1.906189e-05
## 8211    Jeff Foust                 write    30 1573821 1.906189e-05
## 8212    Jeff Foust                 xenon    30 1573821 1.906189e-05
## 8213  Sandra Erwin             approvals    30  716353 4.187879e-05
## 8214  Sandra Erwin            assistance    30  716353 4.187879e-05
## 8215  Sandra Erwin              attacked    30  716353 4.187879e-05
## 8216  Sandra Erwin                 begun    30  716353 4.187879e-05
## 8217  Sandra Erwin                 bills    30  716353 4.187879e-05
## 8218  Sandra Erwin             blueprint    30  716353 4.187879e-05
## 8219  Sandra Erwin                bridge    30  716353 4.187879e-05
## 8220  Sandra Erwin             briefings    30  716353 4.187879e-05
## 8221  Sandra Erwin               british    30  716353 4.187879e-05
## 8222  Sandra Erwin               capsule    30  716353 4.187879e-05
## 8223  Sandra Erwin           christopher    30  716353 4.187879e-05
## 8224  Sandra Erwin           constraints    30  716353 4.187879e-05
## 8225  Sandra Erwin          coordinating    30  716353 4.187879e-05
## 8226  Sandra Erwin                cruise    30  716353 4.187879e-05
## 8227  Sandra Erwin               custody    30  716353 4.187879e-05
## 8228  Sandra Erwin               damaged    30  716353 4.187879e-05
## 8229  Sandra Erwin             dangerous    30  716353 4.187879e-05
## 8230  Sandra Erwin                  darc    30  716353 4.187879e-05
## 8231  Sandra Erwin              declared    30  716353 4.187879e-05
## 8232  Sandra Erwin           departments    30  716353 4.187879e-05
## 8233  Sandra Erwin           destructive    30  716353 4.187879e-05
## 8234  Sandra Erwin              diameter    30  716353 4.187879e-05
## 8235  Sandra Erwin             equipping    30  716353 4.187879e-05
## 8236  Sandra Erwin                 fence    30  716353 4.187879e-05
## 8237  Sandra Erwin                gather    30  716353 4.187879e-05
## 8238  Sandra Erwin               harmful    30  716353 4.187879e-05
## 8239  Sandra Erwin             incentive    30  716353 4.187879e-05
## 8240  Sandra Erwin           incremental    30  716353 4.187879e-05
## 8241  Sandra Erwin                   jet    30  716353 4.187879e-05
## 8242  Sandra Erwin              kniseley    30  716353 4.187879e-05
## 8243  Sandra Erwin          laboratory’s    30  716353 4.187879e-05
## 8244  Sandra Erwin               leaving    30  716353 4.187879e-05
## 8245  Sandra Erwin                 match    30  716353 4.187879e-05
## 8246  Sandra Erwin          observations    30  716353 4.187879e-05
## 8247  Sandra Erwin             obstacles    30  716353 4.187879e-05
## 8248  Sandra Erwin              overseen    30  716353 4.187879e-05
## 8249  Sandra Erwin               praised    30  716353 4.187879e-05
## 8250  Sandra Erwin          presentation    30  716353 4.187879e-05
## 8251  Sandra Erwin           realignment    30  716353 4.187879e-05
## 8252  Sandra Erwin              realized    30  716353 4.187879e-05
## 8253  Sandra Erwin                repair    30  716353 4.187879e-05
## 8254  Sandra Erwin             replacing    30  716353 4.187879e-05
## 8255  Sandra Erwin             reporting    30  716353 4.187879e-05
## 8256  Sandra Erwin                   rs1    30  716353 4.187879e-05
## 8257  Sandra Erwin               satisfy    30  716353 4.187879e-05
## 8258  Sandra Erwin                   spd    30  716353 4.187879e-05
## 8259  Sandra Erwin               staffer    30  716353 4.187879e-05
## 8260  Sandra Erwin                stands    30  716353 4.187879e-05
## 8261  Sandra Erwin            structured    30  716353 4.187879e-05
## 8262  Sandra Erwin                   tag    30  716353 4.187879e-05
## 8263  Sandra Erwin              taxpayer    30  716353 4.187879e-05
## 8264  Sandra Erwin               teaming    30  716353 4.187879e-05
## 8265  Sandra Erwin           technically    30  716353 4.187879e-05
## 8266  Sandra Erwin           threatening    30  716353 4.187879e-05
## 8267  Sandra Erwin        transformation    30  716353 4.187879e-05
## 8268  Sandra Erwin               unknown    30  716353 4.187879e-05
## 8269  Sandra Erwin              viasat’s    30  716353 4.187879e-05
## 8270  Sandra Erwin                 warns    30  716353 4.187879e-05
## 8271  Sandra Erwin                  wins    30  716353 4.187879e-05
## 8272    Jeff Foust                aeolus    29 1573821 1.842649e-05
## 8273    Jeff Foust             analogous    29 1573821 1.842649e-05
## 8274    Jeff Foust               arabsat    29 1573821 1.842649e-05
## 8275    Jeff Foust          aspirational    29 1573821 1.842649e-05
## 8276    Jeff Foust          autonomously    29 1573821 1.842649e-05
## 8277    Jeff Foust               avoided    29 1573821 1.842649e-05
## 8278    Jeff Foust              bessemer    29 1573821 1.842649e-05
## 8279    Jeff Foust                 bryce    29 1573821 1.842649e-05
## 8280    Jeff Foust                 cfius    29 1573821 1.842649e-05
## 8281    Jeff Foust           christopher    29 1573821 1.842649e-05
## 8282    Jeff Foust               classes    29 1573821 1.842649e-05
## 8283    Jeff Foust             coincided    29 1573821 1.842649e-05
## 8284    Jeff Foust         communicating    29 1573821 1.842649e-05
## 8285    Jeff Foust            comparable    29 1573821 1.842649e-05
## 8286    Jeff Foust             connected    29 1573821 1.842649e-05
## 8287    Jeff Foust             construct    29 1573821 1.842649e-05
## 8288    Jeff Foust          consultation    29 1573821 1.842649e-05
## 8289    Jeff Foust                 craig    29 1573821 1.842649e-05
## 8290    Jeff Foust                crusan    29 1573821 1.842649e-05
## 8291    Jeff Foust                 davis    29 1573821 1.842649e-05
## 8292    Jeff Foust                 decay    29 1573821 1.842649e-05
## 8293    Jeff Foust                 defer    29 1573821 1.842649e-05
## 8294    Jeff Foust             delighted    29 1573821 1.842649e-05
## 8295    Jeff Foust              departed    29 1573821 1.842649e-05
## 8296    Jeff Foust           designation    29 1573821 1.842649e-05
## 8297    Jeff Foust             detectors    29 1573821 1.842649e-05
## 8298    Jeff Foust                  disk    29 1573821 1.842649e-05
## 8299    Jeff Foust                 doors    29 1573821 1.842649e-05
## 8300    Jeff Foust               emirati    29 1573821 1.842649e-05
## 8301    Jeff Foust              enormous    29 1573821 1.842649e-05
## 8302    Jeff Foust                  epps    29 1573821 1.842649e-05
## 8303    Jeff Foust                   est    29 1573821 1.842649e-05
## 8304    Jeff Foust             exceeding    29 1573821 1.842649e-05
## 8305    Jeff Foust             existence    29 1573821 1.842649e-05
## 8306    Jeff Foust             extracted    29 1573821 1.842649e-05
## 8307    Jeff Foust               faraday    29 1573821 1.842649e-05
## 8308    Jeff Foust           financially    29 1573821 1.842649e-05
## 8309    Jeff Foust             finishing    29 1573821 1.842649e-05
## 8310    Jeff Foust              floating    29 1573821 1.842649e-05
## 8311    Jeff Foust               flowing    29 1573821 1.842649e-05
## 8312    Jeff Foust               focuses    29 1573821 1.842649e-05
## 8313    Jeff Foust                 fresh    29 1573821 1.842649e-05
## 8314    Jeff Foust            functional    29 1573821 1.842649e-05
## 8315    Jeff Foust            glavkosmos    29 1573821 1.842649e-05
## 8316    Jeff Foust               grapple    29 1573821 1.842649e-05
## 8317    Jeff Foust                    h3    29 1573821 1.842649e-05
## 8318    Jeff Foust               halfway    29 1573821 1.842649e-05
## 8319    Jeff Foust                 haste    29 1573821 1.842649e-05
## 8320    Jeff Foust               hoffman    29 1573821 1.842649e-05
## 8321    Jeff Foust               housing    29 1573821 1.842649e-05
## 8322    Jeff Foust                hughes    29 1573821 1.842649e-05
## 8323    Jeff Foust              identity    29 1573821 1.842649e-05
## 8324    Jeff Foust           inspiration    29 1573821 1.842649e-05
## 8325    Jeff Foust              insurers    29 1573821 1.842649e-05
## 8326    Jeff Foust               intense    29 1573821 1.842649e-05
## 8327    Jeff Foust              jennifer    29 1573821 1.842649e-05
## 8328    Jeff Foust                joseph    29 1573821 1.842649e-05
## 8329    Jeff Foust                karman    29 1573821 1.842649e-05
## 8330    Jeff Foust               lacking    29 1573821 1.842649e-05
## 8331    Jeff Foust                  logo    29 1573821 1.842649e-05
## 8332    Jeff Foust                  lynk    29 1573821 1.842649e-05
## 8333    Jeff Foust              martin’s    29 1573821 1.842649e-05
## 8334    Jeff Foust                  maui    29 1573821 1.842649e-05
## 8335    Jeff Foust            maximizing    29 1573821 1.842649e-05
## 8336    Jeff Foust              module’s    29 1573821 1.842649e-05
## 8337    Jeff Foust                  nano    29 1573821 1.842649e-05
## 8338    Jeff Foust             noosphere    29 1573821 1.842649e-05
## 8339    Jeff Foust                   npo    29 1573821 1.842649e-05
## 8340    Jeff Foust              oltrogge    29 1573821 1.842649e-05
## 8341    Jeff Foust                    op    29 1573821 1.842649e-05
## 8342    Jeff Foust         operationally    29 1573821 1.842649e-05
## 8343    Jeff Foust              outcomes    29 1573821 1.842649e-05
## 8344    Jeff Foust               panel’s    29 1573821 1.842649e-05
## 8345    Jeff Foust               phantom    29 1573821 1.842649e-05
## 8346    Jeff Foust             phenomena    29 1573821 1.842649e-05
## 8347    Jeff Foust                 plays    29 1573821 1.842649e-05
## 8348    Jeff Foust         professionals    29 1573821 1.842649e-05
## 8349    Jeff Foust              quantify    29 1573821 1.842649e-05
## 8350    Jeff Foust             reactions    29 1573821 1.842649e-05
## 8351    Jeff Foust             reception    29 1573821 1.842649e-05
## 8352    Jeff Foust             redundant    29 1573821 1.842649e-05
## 8353    Jeff Foust                 refly    29 1573821 1.842649e-05
## 8354    Jeff Foust            regulating    29 1573821 1.842649e-05
## 8355    Jeff Foust            rehearsals    29 1573821 1.842649e-05
## 8356    Jeff Foust              releases    29 1573821 1.842649e-05
## 8357    Jeff Foust                relies    29 1573821 1.842649e-05
## 8358    Jeff Foust            resiliency    29 1573821 1.842649e-05
## 8359    Jeff Foust           restricting    29 1573821 1.842649e-05
## 8360    Jeff Foust           restructure    29 1573821 1.842649e-05
## 8361    Jeff Foust              revision    29 1573821 1.842649e-05
## 8362    Jeff Foust                 rings    29 1573821 1.842649e-05
## 8363    Jeff Foust                   sda    29 1573821 1.842649e-05
## 8364    Jeff Foust                  shop    29 1573821 1.842649e-05
## 8365    Jeff Foust               simpler    29 1573821 1.842649e-05
## 8366    Jeff Foust                   sit    29 1573821 1.842649e-05
## 8367    Jeff Foust                slight    29 1573821 1.842649e-05
## 8368    Jeff Foust              slowdown    29 1573821 1.842649e-05
## 8369    Jeff Foust                 sorts    29 1573821 1.842649e-05
## 8370    Jeff Foust              spinning    29 1573821 1.842649e-05
## 8371    Jeff Foust                stream    29 1573821 1.842649e-05
## 8372    Jeff Foust                 strix    29 1573821 1.842649e-05
## 8373    Jeff Foust            suspension    29 1573821 1.842649e-05
## 8374    Jeff Foust                themes    29 1573821 1.842649e-05
## 8375    Jeff Foust            transiting    29 1573821 1.842649e-05
## 8376    Jeff Foust                tweaks    29 1573821 1.842649e-05
## 8377    Jeff Foust               union’s    29 1573821 1.842649e-05
## 8378    Jeff Foust                unveil    29 1573821 1.842649e-05
## 8379    Jeff Foust              vladimir    29 1573821 1.842649e-05
## 8380    Jeff Foust              wildlife    29 1573821 1.842649e-05
## 8381    Jeff Foust               wilmore    29 1573821 1.842649e-05
## 8382  Sandra Erwin                 1960s    29  716353 4.048283e-05
## 8383  Sandra Erwin                adjust    29  716353 4.048283e-05
## 8384  Sandra Erwin             architect    29  716353 4.048283e-05
## 8385  Sandra Erwin             astronaut    29  716353 4.048283e-05
## 8386  Sandra Erwin                 blind    29  716353 4.048283e-05
## 8387  Sandra Erwin                bottom    29  716353 4.048283e-05
## 8388  Sandra Erwin                bureau    29  716353 4.048283e-05
## 8389  Sandra Erwin             carefully    29  716353 4.048283e-05
## 8390  Sandra Erwin               certify    29  716353 4.048283e-05
## 8391  Sandra Erwin            chairman’s    29  716353 4.048283e-05
## 8392  Sandra Erwin            championed    29  716353 4.048283e-05
## 8393  Sandra Erwin              chaplain    29  716353 4.048283e-05
## 8394  Sandra Erwin               clients    29  716353 4.048283e-05
## 8395  Sandra Erwin                commit    29  716353 4.048283e-05
## 8396  Sandra Erwin           communities    29  716353 4.048283e-05
## 8397  Sandra Erwin                 davis    29  716353 4.048283e-05
## 8398  Sandra Erwin            deliberate    29  716353 4.048283e-05
## 8399  Sandra Erwin              disaster    29  716353 4.048283e-05
## 8400  Sandra Erwin              drafting    29  716353 4.048283e-05
## 8401  Sandra Erwin              embraced    29  716353 4.048283e-05
## 8402  Sandra Erwin                employ    29  716353 4.048283e-05
## 8403  Sandra Erwin            encryption    29  716353 4.048283e-05
## 8404  Sandra Erwin                 exact    29  716353 4.048283e-05
## 8405  Sandra Erwin           expectation    29  716353 4.048283e-05
## 8406  Sandra Erwin                 faced    29  716353 4.048283e-05
## 8407  Sandra Erwin                    fy    29  716353 4.048283e-05
## 8408  Sandra Erwin                george    29  716353 4.048283e-05
## 8409  Sandra Erwin          governmental    29  716353 4.048283e-05
## 8410  Sandra Erwin              identity    29  716353 4.048283e-05
## 8411  Sandra Erwin             intercept    29  716353 4.048283e-05
## 8412  Sandra Erwin                 kevin    29  716353 4.048283e-05
## 8413  Sandra Erwin               knowing    29  716353 4.048283e-05
## 8414  Sandra Erwin                lander    29  716353 4.048283e-05
## 8415  Sandra Erwin                 leads    29  716353 4.048283e-05
## 8416  Sandra Erwin               medical    29  716353 4.048283e-05
## 8417  Sandra Erwin                 micro    29  716353 4.048283e-05
## 8418  Sandra Erwin              monopoly    29  716353 4.048283e-05
## 8419  Sandra Erwin               notably    29  716353 4.048283e-05
## 8420  Sandra Erwin                 orion    29  716353 4.048283e-05
## 8421  Sandra Erwin                  pair    29  716353 4.048283e-05
## 8422  Sandra Erwin         participating    29  716353 4.048283e-05
## 8423  Sandra Erwin            population    29  716353 4.048283e-05
## 8424  Sandra Erwin           preliminary    29  716353 4.048283e-05
## 8425  Sandra Erwin               printed    29  716353 4.048283e-05
## 8426  Sandra Erwin               profile    29  716353 4.048283e-05
## 8427  Sandra Erwin                 proof    29  716353 4.048283e-05
## 8428  Sandra Erwin               roughly    29  716353 4.048283e-05
## 8429  Sandra Erwin            roundtable    29  716353 4.048283e-05
## 8430  Sandra Erwin               russell    29  716353 4.048283e-05
## 8431  Sandra Erwin               steered    29  716353 4.048283e-05
## 8432  Sandra Erwin            subscriber    29  716353 4.048283e-05
## 8433  Sandra Erwin               tariffs    29  716353 4.048283e-05
## 8434  Sandra Erwin                topics    29  716353 4.048283e-05
## 8435  Sandra Erwin             uncertain    29  716353 4.048283e-05
## 8436  Sandra Erwin              uniforms    29  716353 4.048283e-05
## 8437  Sandra Erwin          universities    29  716353 4.048283e-05
## 8438  Sandra Erwin                  wave    29  716353 4.048283e-05
## 8439    Jeff Foust              academic    28 1573821 1.779110e-05
## 8440    Jeff Foust            allocation    28 1573821 1.779110e-05
## 8441    Jeff Foust               alluded    28 1573821 1.779110e-05
## 8442    Jeff Foust                    ap    28 1573821 1.779110e-05
## 8443    Jeff Foust                appeal    28 1573821 1.779110e-05
## 8444    Jeff Foust                ascend    28 1573821 1.779110e-05
## 8445    Jeff Foust               assumes    28 1573821 1.779110e-05
## 8446    Jeff Foust                author    28 1573821 1.779110e-05
## 8447    Jeff Foust               backers    28 1573821 1.779110e-05
## 8448    Jeff Foust               bechtel    28 1573821 1.779110e-05
## 8449    Jeff Foust            biomedical    28 1573821 1.779110e-05
## 8450    Jeff Foust                boston    28 1573821 1.779110e-05
## 8451    Jeff Foust             capsule’s    28 1573821 1.779110e-05
## 8452    Jeff Foust              cautious    28 1573821 1.779110e-05
## 8453    Jeff Foust            certifying    28 1573821 1.779110e-05
## 8454    Jeff Foust              closeout    28 1573821 1.779110e-05
## 8455    Jeff Foust                  cnbc    28 1573821 1.779110e-05
## 8456    Jeff Foust          commissioner    28 1573821 1.779110e-05
## 8457    Jeff Foust             confusion    28 1573821 1.779110e-05
## 8458    Jeff Foust                connor    28 1573821 1.779110e-05
## 8459    Jeff Foust            consultant    28 1573821 1.779110e-05
## 8460    Jeff Foust                cooper    28 1573821 1.779110e-05
## 8461    Jeff Foust                  copy    28 1573821 1.779110e-05
## 8462    Jeff Foust             corrosion    28 1573821 1.779110e-05
## 8463    Jeff Foust                crimea    28 1573821 1.779110e-05
## 8464    Jeff Foust            cumulative    28 1573821 1.779110e-05
## 8465    Jeff Foust              delaware    28 1573821 1.779110e-05
## 8466    Jeff Foust            dependence    28 1573821 1.779110e-05
## 8467    Jeff Foust             disrupted    28 1573821 1.779110e-05
## 8468    Jeff Foust            distancing    28 1573821 1.779110e-05
## 8469    Jeff Foust               doubled    28 1573821 1.779110e-05
## 8470    Jeff Foust                   edl    28 1573821 1.779110e-05
## 8471    Jeff Foust                   eis    28 1573821 1.779110e-05
## 8472    Jeff Foust           enforcement    28 1573821 1.779110e-05
## 8473    Jeff Foust                  epic    28 1573821 1.779110e-05
## 8474    Jeff Foust         establishment    28 1573821 1.779110e-05
## 8475    Jeff Foust                 fetch    28 1573821 1.779110e-05
## 8476    Jeff Foust              finances    28 1573821 1.779110e-05
## 8477    Jeff Foust                firmly    28 1573821 1.779110e-05
## 8478    Jeff Foust            frustrated    28 1573821 1.779110e-05
## 8479    Jeff Foust              fuselage    28 1573821 1.779110e-05
## 8480    Jeff Foust                  gall    28 1573821 1.779110e-05
## 8481    Jeff Foust             generator    28 1573821 1.779110e-05
## 8482    Jeff Foust               gradual    28 1573821 1.779110e-05
## 8483    Jeff Foust                   h.w    28 1573821 1.779110e-05
## 8484    Jeff Foust                howard    28 1573821 1.779110e-05
## 8485    Jeff Foust                   hub    28 1573821 1.779110e-05
## 8486    Jeff Foust                icemag    28 1573821 1.779110e-05
## 8487    Jeff Foust                   ida    28 1573821 1.779110e-05
## 8488    Jeff Foust            inflection    28 1573821 1.779110e-05
## 8489    Jeff Foust                insert    28 1573821 1.779110e-05
## 8490    Jeff Foust                  jack    28 1573821 1.779110e-05
## 8491    Jeff Foust                leaked    28 1573821 1.779110e-05
## 8492    Jeff Foust               leolabs    28 1573821 1.779110e-05
## 8493    Jeff Foust                markey    28 1573821 1.779110e-05
## 8494    Jeff Foust                maurer    28 1573821 1.779110e-05
## 8495    Jeff Foust        meteorological    28 1573821 1.779110e-05
## 8496    Jeff Foust               metrics    28 1573821 1.779110e-05
## 8497    Jeff Foust               mikhail    28 1573821 1.779110e-05
## 8498    Jeff Foust                  mine    28 1573821 1.779110e-05
## 8499    Jeff Foust            minimizing    28 1573821 1.779110e-05
## 8500    Jeff Foust                 mount    28 1573821 1.779110e-05
## 8501    Jeff Foust             occasions    28 1573821 1.779110e-05
## 8502    Jeff Foust                owners    28 1573821 1.779110e-05
## 8503    Jeff Foust               phasing    28 1573821 1.779110e-05
## 8504    Jeff Foust            philosophy    28 1573821 1.779110e-05
## 8505    Jeff Foust            predicting    28 1573821 1.779110e-05
## 8506    Jeff Foust           prioritized    28 1573821 1.779110e-05
## 8507    Jeff Foust             procuring    28 1573821 1.779110e-05
## 8508    Jeff Foust                 putin    28 1573821 1.779110e-05
## 8509    Jeff Foust                racing    28 1573821 1.779110e-05
## 8510    Jeff Foust              raytheon    28 1573821 1.779110e-05
## 8511    Jeff Foust           recognition    28 1573821 1.779110e-05
## 8512    Jeff Foust          recommending    28 1573821 1.779110e-05
## 8513    Jeff Foust            redesigned    28 1573821 1.779110e-05
## 8514    Jeff Foust             repairing    28 1573821 1.779110e-05
## 8515    Jeff Foust             revisions    28 1573821 1.779110e-05
## 8516    Jeff Foust             routinely    28 1573821 1.779110e-05
## 8517    Jeff Foust                scores    28 1573821 1.779110e-05
## 8518    Jeff Foust                 sizes    28 1573821 1.779110e-05
## 8519    Jeff Foust                 slots    28 1573821 1.779110e-05
## 8520    Jeff Foust              softbank    28 1573821 1.779110e-05
## 8521    Jeff Foust                stayed    28 1573821 1.779110e-05
## 8522    Jeff Foust                 stone    28 1573821 1.779110e-05
## 8523    Jeff Foust               surveys    28 1573821 1.779110e-05
## 8524    Jeff Foust               suspect    28 1573821 1.779110e-05
## 8525    Jeff Foust                  tall    28 1573821 1.779110e-05
## 8526    Jeff Foust             treatment    28 1573821 1.779110e-05
## 8527    Jeff Foust                trends    28 1573821 1.779110e-05
## 8528    Jeff Foust                  tube    28 1573821 1.779110e-05
## 8529    Jeff Foust               turksat    28 1573821 1.779110e-05
## 8530    Jeff Foust        undersecretary    28 1573821 1.779110e-05
## 8531    Jeff Foust               viewing    28 1573821 1.779110e-05
## 8532    Jeff Foust               waivers    28 1573821 1.779110e-05
## 8533    Jeff Foust                wealth    28 1573821 1.779110e-05
## 8534    Jeff Foust                weighs    28 1573821 1.779110e-05
## 8535  Sandra Erwin              announce    28  716353 3.908687e-05
## 8536  Sandra Erwin                 beams    28  716353 3.908687e-05
## 8537  Sandra Erwin                bennet    28  716353 3.908687e-05
## 8538  Sandra Erwin            blacksky’s    28  716353 3.908687e-05
## 8539  Sandra Erwin                bought    28  716353 3.908687e-05
## 8540  Sandra Erwin             breakfast    28  716353 3.908687e-05
## 8541  Sandra Erwin                burden    28  716353 3.908687e-05
## 8542  Sandra Erwin               calvert    28  716353 3.908687e-05
## 8543  Sandra Erwin               cameras    28  716353 3.908687e-05
## 8544  Sandra Erwin                 cards    28  716353 3.908687e-05
## 8545  Sandra Erwin               charles    28  716353 3.908687e-05
## 8546  Sandra Erwin              chemical    28  716353 3.908687e-05
## 8547  Sandra Erwin         circumstances    28  716353 3.908687e-05
## 8548  Sandra Erwin                 claim    28  716353 3.908687e-05
## 8549  Sandra Erwin               clarity    28  716353 3.908687e-05
## 8550  Sandra Erwin           comfortable    28  716353 3.908687e-05
## 8551  Sandra Erwin             condition    28  716353 3.908687e-05
## 8552  Sandra Erwin         consolidation    28  716353 3.908687e-05
## 8553  Sandra Erwin              contrast    28  716353 3.908687e-05
## 8554  Sandra Erwin                credit    28  716353 3.908687e-05
## 8555  Sandra Erwin            diplomatic    28  716353 3.908687e-05
## 8556  Sandra Erwin              district    28  716353 3.908687e-05
## 8557  Sandra Erwin                drives    28  716353 3.908687e-05
## 8558  Sandra Erwin            engagement    28  716353 3.908687e-05
## 8559  Sandra Erwin            enthusiasm    28  716353 3.908687e-05
## 8560  Sandra Erwin             execution    28  716353 3.908687e-05
## 8561  Sandra Erwin                exists    28  716353 3.908687e-05
## 8562  Sandra Erwin          expectations    28  716353 3.908687e-05
## 8563  Sandra Erwin               expense    28  716353 3.908687e-05
## 8564  Sandra Erwin               extends    28  716353 3.908687e-05
## 8565  Sandra Erwin              failures    28  716353 3.908687e-05
## 8566  Sandra Erwin           financially    28  716353 3.908687e-05
## 8567  Sandra Erwin             financing    28  716353 3.908687e-05
## 8568  Sandra Erwin               finding    28  716353 3.908687e-05
## 8569  Sandra Erwin             guarantee    28  716353 3.908687e-05
## 8570  Sandra Erwin                hiring    28  716353 3.908687e-05
## 8571  Sandra Erwin           instruments    28  716353 3.908687e-05
## 8572  Sandra Erwin                  jack    28  716353 3.908687e-05
## 8573  Sandra Erwin               justify    28  716353 3.908687e-05
## 8574  Sandra Erwin                   ken    28  716353 3.908687e-05
## 8575  Sandra Erwin                  leon    28  716353 3.908687e-05
## 8576  Sandra Erwin             leostella    28  716353 3.908687e-05
## 8577  Sandra Erwin                  maps    28  716353 3.908687e-05
## 8578  Sandra Erwin               meaning    28  716353 3.908687e-05
## 8579  Sandra Erwin               mmerge4    28  716353 3.908687e-05
## 8580  Sandra Erwin               mmerge5    28  716353 3.908687e-05
## 8581  Sandra Erwin            negotiated    28  716353 3.908687e-05
## 8582  Sandra Erwin           netherlands    28  716353 3.908687e-05
## 8583  Sandra Erwin               neutron    28  716353 3.908687e-05
## 8584  Sandra Erwin               peraton    28  716353 3.908687e-05
## 8585  Sandra Erwin            personally    28  716353 3.908687e-05
## 8586  Sandra Erwin              printing    28  716353 3.908687e-05
## 8587  Sandra Erwin                 prize    28  716353 3.908687e-05
## 8588  Sandra Erwin                proper    28  716353 3.908687e-05
## 8589  Sandra Erwin            raytheon’s    28  716353 3.908687e-05
## 8590  Sandra Erwin             receiving    28  716353 3.908687e-05
## 8591  Sandra Erwin               reflect    28  716353 3.908687e-05
## 8592  Sandra Erwin              relocate    28  716353 3.908687e-05
## 8593  Sandra Erwin              republic    28  716353 3.908687e-05
## 8594  Sandra Erwin               respect    28  716353 3.908687e-05
## 8595  Sandra Erwin                  roll    28  716353 3.908687e-05
## 8596  Sandra Erwin                  seal    28  716353 3.908687e-05
## 8597  Sandra Erwin                 shawn    28  716353 3.908687e-05
## 8598  Sandra Erwin              spanjers    28  716353 3.908687e-05
## 8599  Sandra Erwin                static    28  716353 3.908687e-05
## 8600  Sandra Erwin           subordinate    28  716353 3.908687e-05
## 8601  Sandra Erwin              suffered    28  716353 3.908687e-05
## 8602  Sandra Erwin                summit    28  716353 3.908687e-05
## 8603  Sandra Erwin                teehan    28  716353 3.908687e-05
## 8604  Sandra Erwin           temporarily    28  716353 3.908687e-05
## 8605  Sandra Erwin             territory    28  716353 3.908687e-05
## 8606  Sandra Erwin                thales    28  716353 3.908687e-05
## 8607  Sandra Erwin               tracked    28  716353 3.908687e-05
## 8608  Sandra Erwin                 ultra    28  716353 3.908687e-05
## 8609  Sandra Erwin              validate    28  716353 3.908687e-05
## 8610  Sandra Erwin                volume    28  716353 3.908687e-05
## 8611    Jeff Foust              adoption    27 1573821 1.715570e-05
## 8612    Jeff Foust                  aeon    27 1573821 1.715570e-05
## 8613    Jeff Foust                angels    27 1573821 1.715570e-05
## 8614    Jeff Foust            assembling    27 1573821 1.715570e-05
## 8615    Jeff Foust            assignment    27 1573821 1.715570e-05
## 8616    Jeff Foust            attributed    27 1573821 1.715570e-05
## 8617    Jeff Foust             beautiful    27 1573821 1.715570e-05
## 8618    Jeff Foust                   ben    27 1573821 1.715570e-05
## 8619    Jeff Foust                 bleed    27 1573821 1.715570e-05
## 8620    Jeff Foust                  brad    27 1573821 1.715570e-05
## 8621    Jeff Foust            categories    27 1573821 1.715570e-05
## 8622    Jeff Foust               ceiling    27 1573821 1.715570e-05
## 8623    Jeff Foust            chairwoman    27 1573821 1.715570e-05
## 8624    Jeff Foust      characterization    27 1573821 1.715570e-05
## 8625    Jeff Foust         commercialize    27 1573821 1.715570e-05
## 8626    Jeff Foust            compensate    27 1573821 1.715570e-05
## 8627    Jeff Foust               comspoc    27 1573821 1.715570e-05
## 8628    Jeff Foust                 cores    27 1573821 1.715570e-05
## 8629    Jeff Foust                 dealt    27 1573821 1.715570e-05
## 8630    Jeff Foust        decommissioned    27 1573821 1.715570e-05
## 8631    Jeff Foust                 dewit    27 1573821 1.715570e-05
## 8632    Jeff Foust            disruption    27 1573821 1.715570e-05
## 8633    Jeff Foust            downplayed    27 1573821 1.715570e-05
## 8634    Jeff Foust                eberly    27 1573821 1.715570e-05
## 8635    Jeff Foust               enjoyed    27 1573821 1.715570e-05
## 8636    Jeff Foust       extraordinarily    27 1573821 1.715570e-05
## 8637    Jeff Foust              foresees    27 1573821 1.715570e-05
## 8638    Jeff Foust                  funk    27 1573821 1.715570e-05
## 8639    Jeff Foust            furloughed    27 1573821 1.715570e-05
## 8640    Jeff Foust                gatens    27 1573821 1.715570e-05
## 8641    Jeff Foust                  gift    27 1573821 1.715570e-05
## 8642    Jeff Foust                  glad    27 1573821 1.715570e-05
## 8643    Jeff Foust                 gyros    27 1573821 1.715570e-05
## 8644    Jeff Foust                   hab    27 1573821 1.715570e-05
## 8645    Jeff Foust              handover    27 1573821 1.715570e-05
## 8646    Jeff Foust                headed    27 1573821 1.715570e-05
## 8647    Jeff Foust            hemisphere    27 1573821 1.715570e-05
## 8648    Jeff Foust              honestly    27 1573821 1.715570e-05
## 8649    Jeff Foust            humanity’s    27 1573821 1.715570e-05
## 8650    Jeff Foust                    ii    27 1573821 1.715570e-05
## 8651    Jeff Foust            improperly    27 1573821 1.715570e-05
## 8652    Jeff Foust               inspect    27 1573821 1.715570e-05
## 8653    Jeff Foust          instrument’s    27 1573821 1.715570e-05
## 8654    Jeff Foust             intensive    27 1573821 1.715570e-05
## 8655    Jeff Foust                  isam    27 1573821 1.715570e-05
## 8656    Jeff Foust                  itar    27 1573821 1.715570e-05
## 8657    Jeff Foust                   itu    27 1573821 1.715570e-05
## 8658    Jeff Foust                 lapse    27 1573821 1.715570e-05
## 8659    Jeff Foust               leaning    27 1573821 1.715570e-05
## 8660    Jeff Foust               lewicki    27 1573821 1.715570e-05
## 8661    Jeff Foust             lifecycle    27 1573821 1.715570e-05
## 8662    Jeff Foust              lobbying    27 1573821 1.715570e-05
## 8663    Jeff Foust                marine    27 1573821 1.715570e-05
## 8664    Jeff Foust                 metal    27 1573821 1.715570e-05
## 8665    Jeff Foust              mohammed    27 1573821 1.715570e-05
## 8666    Jeff Foust              movement    27 1573821 1.715570e-05
## 8667    Jeff Foust                   nac    27 1573821 1.715570e-05
## 8668    Jeff Foust           negotiating    27 1573821 1.715570e-05
## 8669    Jeff Foust                   nga    27 1573821 1.715570e-05
## 8670    Jeff Foust                 niche    27 1573821 1.715570e-05
## 8671    Jeff Foust                  nrol    27 1573821 1.715570e-05
## 8672    Jeff Foust                 nsf’s    27 1573821 1.715570e-05
## 8673    Jeff Foust                   nto    27 1573821 1.715570e-05
## 8674    Jeff Foust                oppose    27 1573821 1.715570e-05
## 8675    Jeff Foust              opposite    27 1573821 1.715570e-05
## 8676    Jeff Foust                phobos    27 1573821 1.715570e-05
## 8677    Jeff Foust                pixxel    27 1573821 1.715570e-05
## 8678    Jeff Foust              plankton    27 1573821 1.715570e-05
## 8679    Jeff Foust                poland    27 1573821 1.715570e-05
## 8680    Jeff Foust               posture    27 1573821 1.715570e-05
## 8681    Jeff Foust              prevents    27 1573821 1.715570e-05
## 8682    Jeff Foust            proponents    27 1573821 1.715570e-05
## 8683    Jeff Foust                    pt    27 1573821 1.715570e-05
## 8684    Jeff Foust                 purse    27 1573821 1.715570e-05
## 8685    Jeff Foust        radiofrequency    27 1573821 1.715570e-05
## 8686    Jeff Foust              respects    27 1573821 1.715570e-05
## 8687    Jeff Foust             retrieval    27 1573821 1.715570e-05
## 8688    Jeff Foust                ricker    27 1573821 1.715570e-05
## 8689    Jeff Foust                  sbsp    27 1573821 1.715570e-05
## 8690    Jeff Foust              scalable    27 1573821 1.715570e-05
## 8691    Jeff Foust                   sep    27 1573821 1.715570e-05
## 8692    Jeff Foust              shoffner    27 1573821 1.715570e-05
## 8693    Jeff Foust                sobeck    27 1573821 1.715570e-05
## 8694    Jeff Foust                 stamp    27 1573821 1.715570e-05
## 8695    Jeff Foust             stretched    27 1573821 1.715570e-05
## 8696    Jeff Foust              struggle    27 1573821 1.715570e-05
## 8697    Jeff Foust                sweden    27 1573821 1.715570e-05
## 8698    Jeff Foust          technologist    27 1573821 1.715570e-05
## 8699    Jeff Foust              thriving    27 1573821 1.715570e-05
## 8700    Jeff Foust               thuraya    27 1573821 1.715570e-05
## 8701    Jeff Foust         transmissions    27 1573821 1.715570e-05
## 8702    Jeff Foust                 trips    27 1573821 1.715570e-05
## 8703    Jeff Foust                vacant    27 1573821 1.715570e-05
## 8704    Jeff Foust              vector’s    27 1573821 1.715570e-05
## 8705    Jeff Foust                videos    27 1573821 1.715570e-05
## 8706    Jeff Foust                 waste    27 1573821 1.715570e-05
## 8707    Jeff Foust                  wife    27 1573821 1.715570e-05
## 8708    Jeff Foust                 zenit    27 1573821 1.715570e-05
## 8709  Sandra Erwin                absorb    27  716353 3.769091e-05
## 8710  Sandra Erwin          accomplished    27  716353 3.769091e-05
## 8711  Sandra Erwin          additionally    27  716353 3.769091e-05
## 8712  Sandra Erwin                  aims    27  716353 3.769091e-05
## 8713  Sandra Erwin               assumes    27  716353 3.769091e-05
## 8714  Sandra Erwin         automatically    27  716353 3.769091e-05
## 8715  Sandra Erwin                 azure    27  716353 3.769091e-05
## 8716  Sandra Erwin             basically    27  716353 3.769091e-05
## 8717  Sandra Erwin               bidding    27  716353 3.769091e-05
## 8718  Sandra Erwin                bomber    27  716353 3.769091e-05
## 8719  Sandra Erwin                  chat    27  716353 3.769091e-05
## 8720  Sandra Erwin               cleared    27  716353 3.769091e-05
## 8721  Sandra Erwin               contact    27  716353 3.769091e-05
## 8722  Sandra Erwin              couldn’t    27  716353 3.769091e-05
## 8723  Sandra Erwin                 crews    27  716353 3.769091e-05
## 8724  Sandra Erwin               crosier    27  716353 3.769091e-05
## 8725  Sandra Erwin                deeply    27  716353 3.769091e-05
## 8726  Sandra Erwin                  demo    27  716353 3.769091e-05
## 8727  Sandra Erwin               deploys    27  716353 3.769091e-05
## 8728  Sandra Erwin           differences    27  716353 3.769091e-05
## 8729  Sandra Erwin               divided    27  716353 3.769091e-05
## 8730  Sandra Erwin                 eager    27  716353 3.769091e-05
## 8731  Sandra Erwin           efficiently    27  716353 3.769091e-05
## 8732  Sandra Erwin            equivalent    27  716353 3.769091e-05
## 8733  Sandra Erwin              examples    27  716353 3.769091e-05
## 8734  Sandra Erwin           frustration    27  716353 3.769091e-05
## 8735  Sandra Erwin               handled    27  716353 3.769091e-05
## 8736  Sandra Erwin            inherently    27  716353 3.769091e-05
## 8737  Sandra Erwin               insists    27  716353 3.769091e-05
## 8738  Sandra Erwin        interconnected    27  716353 3.769091e-05
## 8739  Sandra Erwin               involve    27  716353 3.769091e-05
## 8740  Sandra Erwin             involving    27  716353 3.769091e-05
## 8741  Sandra Erwin                   jms    27  716353 3.769091e-05
## 8742  Sandra Erwin               looming    27  716353 3.769091e-05
## 8743  Sandra Erwin                  matt    27  716353 3.769091e-05
## 8744  Sandra Erwin                  mega    27  716353 3.769091e-05
## 8745  Sandra Erwin        meteorological    27  716353 3.769091e-05
## 8746  Sandra Erwin             milsatcom    27  716353 3.769091e-05
## 8747  Sandra Erwin           modernizing    27  716353 3.769091e-05
## 8748  Sandra Erwin              norquist    27  716353 3.769091e-05
## 8749  Sandra Erwin             orbital’s    27  716353 3.769091e-05
## 8750  Sandra Erwin               overlap    27  716353 3.769091e-05
## 8751  Sandra Erwin           pawlikowski    27  716353 3.769091e-05
## 8752  Sandra Erwin                 plant    27  716353 3.769091e-05
## 8753  Sandra Erwin                primes    27  716353 3.769091e-05
## 8754  Sandra Erwin              procures    27  716353 3.769091e-05
## 8755  Sandra Erwin              reaction    27  716353 3.769091e-05
## 8756  Sandra Erwin             recovered    27  716353 3.769091e-05
## 8757  Sandra Erwin               reentry    27  716353 3.769091e-05
## 8758  Sandra Erwin               regions    27  716353 3.769091e-05
## 8759  Sandra Erwin           resignation    27  716353 3.769091e-05
## 8760  Sandra Erwin                  rl10    27  716353 3.769091e-05
## 8761  Sandra Erwin                 roger    27  716353 3.769091e-05
## 8762  Sandra Erwin              scrutiny    27  716353 3.769091e-05
## 8763  Sandra Erwin              stallmer    27  716353 3.769091e-05
## 8764  Sandra Erwin           streamlined    27  716353 3.769091e-05
## 8765  Sandra Erwin            suborbital    27  716353 3.769091e-05
## 8766  Sandra Erwin           synchronous    27  716353 3.769091e-05
## 8767  Sandra Erwin                 tanks    27  716353 3.769091e-05
## 8768  Sandra Erwin                tapped    27  716353 3.769091e-05
## 8769  Sandra Erwin                tasked    27  716353 3.769091e-05
## 8770  Sandra Erwin                 tyvak    27  716353 3.769091e-05
## 8771  Sandra Erwin             undermine    27  716353 3.769091e-05
## 8772  Sandra Erwin               utilize    27  716353 3.769091e-05
## 8773  Sandra Erwin                  wake    27  716353 3.769091e-05
## 8774  Sandra Erwin                winner    27  716353 3.769091e-05
## 8775  Sandra Erwin              wireless    27  716353 3.769091e-05
## 8776  Sandra Erwin                  zone    27  716353 3.769091e-05
## 8777    Jeff Foust                 actor    26 1573821 1.652030e-05
## 8778    Jeff Foust             adversely    26 1573821 1.652030e-05
## 8779    Jeff Foust           advertising    26 1573821 1.652030e-05
## 8780    Jeff Foust                advise    26 1573821 1.652030e-05
## 8781    Jeff Foust            advocating    26 1573821 1.652030e-05
## 8782    Jeff Foust               african    26 1573821 1.652030e-05
## 8783    Jeff Foust           allegations    26 1573821 1.652030e-05
## 8784    Jeff Foust              allocate    26 1573821 1.652030e-05
## 8785    Jeff Foust                 alter    26 1573821 1.652030e-05
## 8786    Jeff Foust             alternate    26 1573821 1.652030e-05
## 8787    Jeff Foust               arrange    26 1573821 1.652030e-05
## 8788    Jeff Foust              articles    26 1573821 1.652030e-05
## 8789    Jeff Foust                 baker    26 1573821 1.652030e-05
## 8790    Jeff Foust                 boats    26 1573821 1.652030e-05
## 8791    Jeff Foust                bolton    26 1573821 1.652030e-05
## 8792    Jeff Foust             brazilian    26 1573821 1.652030e-05
## 8793    Jeff Foust             canadarm3    26 1573821 1.652030e-05
## 8794    Jeff Foust                caught    26 1573821 1.652030e-05
## 8795    Jeff Foust               celsius    26 1573821 1.652030e-05
## 8796    Jeff Foust          civilization    26 1573821 1.652030e-05
## 8797    Jeff Foust               clampin    26 1573821 1.652030e-05
## 8798    Jeff Foust          collectively    26 1573821 1.652030e-05
## 8799    Jeff Foust            contingent    26 1573821 1.652030e-05
## 8800    Jeff Foust           contractual    26 1573821 1.652030e-05
## 8801    Jeff Foust                  copv    26 1573821 1.652030e-05
## 8802    Jeff Foust                 crazy    26 1573821 1.652030e-05
## 8803    Jeff Foust                  crs2    26 1573821 1.652030e-05
## 8804    Jeff Foust               damages    26 1573821 1.652030e-05
## 8805    Jeff Foust              database    26 1573821 1.652030e-05
## 8806    Jeff Foust             deadlines    26 1573821 1.652030e-05
## 8807    Jeff Foust             descended    26 1573821 1.652030e-05
## 8808    Jeff Foust             diligence    26 1573821 1.652030e-05
## 8809    Jeff Foust                 dutch    26 1573821 1.652030e-05
## 8810    Jeff Foust                   edt    26 1573821 1.652030e-05
## 8811    Jeff Foust             ellington    26 1573821 1.652030e-05
## 8812    Jeff Foust             emergence    26 1573821 1.652030e-05
## 8813    Jeff Foust             endeavors    26 1573821 1.652030e-05
## 8814    Jeff Foust             exercised    26 1573821 1.652030e-05
## 8815    Jeff Foust               existed    26 1573821 1.652030e-05
## 8816    Jeff Foust           extensively    26 1573821 1.652030e-05
## 8817    Jeff Foust                 faber    26 1573821 1.652030e-05
## 8818    Jeff Foust                farley    26 1573821 1.652030e-05
## 8819    Jeff Foust                    fy    26 1573821 1.652030e-05
## 8820    Jeff Foust             gathering    26 1573821 1.652030e-05
## 8821    Jeff Foust                  gear    26 1573821 1.652030e-05
## 8822    Jeff Foust             governing    26 1573821 1.652030e-05
## 8823    Jeff Foust                hailed    26 1573821 1.652030e-05
## 8824    Jeff Foust                 hatch    26 1573821 1.652030e-05
## 8825    Jeff Foust                 henry    26 1573821 1.652030e-05
## 8826    Jeff Foust            highlights    26 1573821 1.652030e-05
## 8827    Jeff Foust                  icbm    26 1573821 1.652030e-05
## 8828    Jeff Foust              inclined    26 1573821 1.652030e-05
## 8829    Jeff Foust             inquiries    26 1573821 1.652030e-05
## 8830    Jeff Foust         instantaneous    26 1573821 1.652030e-05
## 8831    Jeff Foust           involvement    26 1573821 1.652030e-05
## 8832    Jeff Foust                jfoust    26 1573821 1.652030e-05
## 8833    Jeff Foust                    jr    26 1573821 1.652030e-05
## 8834    Jeff Foust                 loose    26 1573821 1.652030e-05
## 8835    Jeff Foust             mechanics    26 1573821 1.652030e-05
## 8836    Jeff Foust                  meir    26 1573821 1.652030e-05
## 8837    Jeff Foust                 micro    26 1573821 1.652030e-05
## 8838    Jeff Foust                mockup    26 1573821 1.652030e-05
## 8839    Jeff Foust                 pages    26 1573821 1.652030e-05
## 8840    Jeff Foust                 patch    26 1573821 1.652030e-05
## 8841    Jeff Foust            pioneering    26 1573821 1.652030e-05
## 8842    Jeff Foust              preclude    26 1573821 1.652030e-05
## 8843    Jeff Foust            preference    26 1573821 1.652030e-05
## 8844    Jeff Foust             privateer    26 1573821 1.652030e-05
## 8845    Jeff Foust             procedure    26 1573821 1.652030e-05
## 8846    Jeff Foust            productive    26 1573821 1.652030e-05
## 8847    Jeff Foust                recess    26 1573821 1.652030e-05
## 8848    Jeff Foust            remarkable    26 1573821 1.652030e-05
## 8849    Jeff Foust              remember    26 1573821 1.652030e-05
## 8850    Jeff Foust                reopen    26 1573821 1.652030e-05
## 8851    Jeff Foust              resigned    26 1573821 1.652030e-05
## 8852    Jeff Foust              retrieve    26 1573821 1.652030e-05
## 8853    Jeff Foust            revolution    26 1573821 1.652030e-05
## 8854    Jeff Foust                 rough    26 1573821 1.652030e-05
## 8855    Jeff Foust                  ryan    26 1573821 1.652030e-05
## 8856    Jeff Foust         satrevolution    26 1573821 1.652030e-05
## 8857    Jeff Foust        scientifically    26 1573821 1.652030e-05
## 8858    Jeff Foust              sherwood    26 1573821 1.652030e-05
## 8859    Jeff Foust                 she’s    26 1573821 1.652030e-05
## 8860    Jeff Foust          significance    26 1573821 1.652030e-05
## 8861    Jeff Foust             simulator    26 1573821 1.652030e-05
## 8862    Jeff Foust                   sld    26 1573821 1.652030e-05
## 8863    Jeff Foust                sounds    26 1573821 1.652030e-05
## 8864    Jeff Foust               spencer    26 1573821 1.652030e-05
## 8865    Jeff Foust               spinrad    26 1573821 1.652030e-05
## 8866    Jeff Foust                stereo    26 1573821 1.652030e-05
## 8867    Jeff Foust              talented    26 1573821 1.652030e-05
## 8868    Jeff Foust                  tend    26 1573821 1.652030e-05
## 8869    Jeff Foust               testify    26 1573821 1.652030e-05
## 8870    Jeff Foust                 treat    26 1573821 1.652030e-05
## 8871    Jeff Foust                trojan    26 1573821 1.652030e-05
## 8872    Jeff Foust             tumlinson    26 1573821 1.652030e-05
## 8873    Jeff Foust             umbilical    26 1573821 1.652030e-05
## 8874    Jeff Foust             unchanged    26 1573821 1.652030e-05
## 8875    Jeff Foust           understands    26 1573821 1.652030e-05
## 8876    Jeff Foust                 vapor    26 1573821 1.652030e-05
## 8877    Jeff Foust            variations    26 1573821 1.652030e-05
## 8878    Jeff Foust             violation    26 1573821 1.652030e-05
## 8879    Jeff Foust               wallace    26 1573821 1.652030e-05
## 8880    Jeff Foust                warren    26 1573821 1.652030e-05
## 8881    Jeff Foust              weakness    26 1573821 1.652030e-05
## 8882    Jeff Foust               wernher    26 1573821 1.652030e-05
## 8883    Jeff Foust                  wrap    26 1573821 1.652030e-05
## 8884    Jeff Foust             yesterday    26 1573821 1.652030e-05
## 8885  Sandra Erwin                   1st    26  716353 3.629496e-05
## 8886  Sandra Erwin                accept    26  716353 3.629496e-05
## 8887  Sandra Erwin           accountable    26  716353 3.629496e-05
## 8888  Sandra Erwin                 aevum    26  716353 3.629496e-05
## 8889  Sandra Erwin              aluminum    26  716353 3.629496e-05
## 8890  Sandra Erwin              anderson    26  716353 3.629496e-05
## 8891  Sandra Erwin             arguments    26  716353 3.629496e-05
## 8892  Sandra Erwin             assembled    26  716353 3.629496e-05
## 8893  Sandra Erwin                assure    26  716353 3.629496e-05
## 8894  Sandra Erwin              attempts    26  716353 3.629496e-05
## 8895  Sandra Erwin                  bank    26  716353 3.629496e-05
## 8896  Sandra Erwin            capitalize    26  716353 3.629496e-05
## 8897  Sandra Erwin               careful    26  716353 3.629496e-05
## 8898  Sandra Erwin            categories    26  716353 3.629496e-05
## 8899  Sandra Erwin              cellular    26  716353 3.629496e-05
## 8900  Sandra Erwin               colonel    26  716353 3.629496e-05
## 8901  Sandra Erwin          commoditized    26  716353 3.629496e-05
## 8902  Sandra Erwin           conceivably    26  716353 3.629496e-05
## 8903  Sandra Erwin            conclusion    26  716353 3.629496e-05
## 8904  Sandra Erwin       congressionally    26  716353 3.629496e-05
## 8905  Sandra Erwin             considers    26  716353 3.629496e-05
## 8906  Sandra Erwin               context    26  716353 3.629496e-05
## 8907  Sandra Erwin            continuity    26  716353 3.629496e-05
## 8908  Sandra Erwin                 cspoc    26  716353 3.629496e-05
## 8909  Sandra Erwin                deeper    26  716353 3.629496e-05
## 8910  Sandra Erwin               degrade    26  716353 3.629496e-05
## 8911  Sandra Erwin             detecting    26  716353 3.629496e-05
## 8912  Sandra Erwin          disappointed    26  716353 3.629496e-05
## 8913  Sandra Erwin               dropped    26  716353 3.629496e-05
## 8914  Sandra Erwin               emerged    26  716353 3.629496e-05
## 8915  Sandra Erwin           emergencies    26  716353 3.629496e-05
## 8916  Sandra Erwin               engaged    26  716353 3.629496e-05
## 8917  Sandra Erwin                fairly    26  716353 3.629496e-05
## 8918  Sandra Erwin                  fear    26  716353 3.629496e-05
## 8919  Sandra Erwin             gathering    26  716353 3.629496e-05
## 8920  Sandra Erwin               greaves    26  716353 3.629496e-05
## 8921  Sandra Erwin              hardened    26  716353 3.629496e-05
## 8922  Sandra Erwin               hartman    26  716353 3.629496e-05
## 8923  Sandra Erwin              hearings    26  716353 3.629496e-05
## 8924  Sandra Erwin              heinrich    26  716353 3.629496e-05
## 8925  Sandra Erwin                 hired    26  716353 3.629496e-05
## 8926  Sandra Erwin                humans    26  716353 3.629496e-05
## 8927  Sandra Erwin             improving    26  716353 3.629496e-05
## 8928  Sandra Erwin           inclination    26  716353 3.629496e-05
## 8929  Sandra Erwin           integrators    26  716353 3.629496e-05
## 8930  Sandra Erwin                intend    26  716353 3.629496e-05
## 8931  Sandra Erwin                  i’ll    26  716353 3.629496e-05
## 8932  Sandra Erwin                    ku    26  716353 3.629496e-05
## 8933  Sandra Erwin                 labor    26  716353 3.629496e-05
## 8934  Sandra Erwin                landed    26  716353 3.629496e-05
## 8935  Sandra Erwin                  loft    26  716353 3.629496e-05
## 8936  Sandra Erwin                margin    26  716353 3.629496e-05
## 8937  Sandra Erwin              ministry    26  716353 3.629496e-05
## 8938  Sandra Erwin                modify    26  716353 3.629496e-05
## 8939  Sandra Erwin             nefarious    26  716353 3.629496e-05
## 8940  Sandra Erwin                normal    26  716353 3.629496e-05
## 8941  Sandra Erwin              numerous    26  716353 3.629496e-05
## 8942  Sandra Erwin             overnight    26  716353 3.629496e-05
## 8943  Sandra Erwin                oxygen    26  716353 3.629496e-05
## 8944  Sandra Erwin             partially    26  716353 3.629496e-05
## 8945  Sandra Erwin          participated    26  716353 3.629496e-05
## 8946  Sandra Erwin                 posts    26  716353 3.629496e-05
## 8947  Sandra Erwin               resolve    26  716353 3.629496e-05
## 8948  Sandra Erwin              resolved    26  716353 3.629496e-05
## 8949  Sandra Erwin              robotics    26  716353 3.629496e-05
## 8950  Sandra Erwin                  sale    26  716353 3.629496e-05
## 8951  Sandra Erwin            seamlessly    26  716353 3.629496e-05
## 8952  Sandra Erwin                   sit    26  716353 3.629496e-05
## 8953  Sandra Erwin                 sized    26  716353 3.629496e-05
## 8954  Sandra Erwin               skilled    26  716353 3.629496e-05
## 8955  Sandra Erwin                solved    26  716353 3.629496e-05
## 8956  Sandra Erwin              southern    26  716353 3.629496e-05
## 8957  Sandra Erwin                  spac    26  716353 3.629496e-05
## 8958  Sandra Erwin               summary    26  716353 3.629496e-05
## 8959  Sandra Erwin                  tiny    26  716353 3.629496e-05
## 8960  Sandra Erwin           transmitted    26  716353 3.629496e-05
## 8961  Sandra Erwin               trident    26  716353 3.629496e-05
## 8962  Sandra Erwin               typical    26  716353 3.629496e-05
## 8963  Sandra Erwin            understood    26  716353 3.629496e-05
## 8964  Sandra Erwin                  veto    26  716353 3.629496e-05
## 8965  Sandra Erwin                voiced    26  716353 3.629496e-05
## 8966  Sandra Erwin         vulnerability    26  716353 3.629496e-05
## 8967  Sandra Erwin                   web    26  716353 3.629496e-05
## 8968  Sandra Erwin              weighing    26  716353 3.629496e-05
## 8969    Jeff Foust                 1970s    25 1573821 1.588491e-05
## 8970    Jeff Foust                    1a    25 1573821 1.588491e-05
## 8971    Jeff Foust                 2000s    25 1573821 1.588491e-05
## 8972    Jeff Foust                  34th    25 1573821 1.588491e-05
## 8973    Jeff Foust             accessing    25 1573821 1.588491e-05
## 8974    Jeff Foust                accres    25 1573821 1.588491e-05
## 8975    Jeff Foust                   aia    25 1573821 1.588491e-05
## 8976    Jeff Foust              annually    25 1573821 1.588491e-05
## 8977    Jeff Foust               applaud    25 1573821 1.588491e-05
## 8978    Jeff Foust           appreciated    25 1573821 1.588491e-05
## 8979    Jeff Foust              assessed    25 1573821 1.588491e-05
## 8980    Jeff Foust                atomic    25 1573821 1.588491e-05
## 8981    Jeff Foust                attack    25 1573821 1.588491e-05
## 8982    Jeff Foust                  bear    25 1573821 1.588491e-05
## 8983    Jeff Foust             behaviors    25 1573821 1.588491e-05
## 8984    Jeff Foust              boldlygo    25 1573821 1.588491e-05
## 8985    Jeff Foust               brother    25 1573821 1.588491e-05
## 8986    Jeff Foust               cabinet    25 1573821 1.588491e-05
## 8987    Jeff Foust                campus    25 1573821 1.588491e-05
## 8988    Jeff Foust           canaveral’s    25 1573821 1.588491e-05
## 8989    Jeff Foust                   cfo    25 1573821 1.588491e-05
## 8990    Jeff Foust               channel    25 1573821 1.588491e-05
## 8991    Jeff Foust                 chari    25 1573821 1.588491e-05
## 8992    Jeff Foust              clusters    25 1573821 1.588491e-05
## 8993    Jeff Foust         collaborating    25 1573821 1.588491e-05
## 8994    Jeff Foust            committing    25 1573821 1.588491e-05
## 8995    Jeff Foust             countered    25 1573821 1.588491e-05
## 8996    Jeff Foust                 craft    25 1573821 1.588491e-05
## 8997    Jeff Foust                  dava    25 1573821 1.588491e-05
## 8998    Jeff Foust             deferring    25 1573821 1.588491e-05
## 8999    Jeff Foust             disagreed    25 1573821 1.588491e-05
## 9000    Jeff Foust            disconnect    25 1573821 1.588491e-05
## 9001    Jeff Foust           discovering    25 1573821 1.588491e-05
## 9002    Jeff Foust              doubling    25 1573821 1.588491e-05
## 9003    Jeff Foust                  drew    25 1573821 1.588491e-05
## 9004    Jeff Foust                   dsi    25 1573821 1.588491e-05
## 9005    Jeff Foust                echoed    25 1573821 1.588491e-05
## 9006    Jeff Foust                famous    25 1573821 1.588491e-05
## 9007    Jeff Foust                  fans    25 1573821 1.588491e-05
## 9008    Jeff Foust           forthcoming    25 1573821 1.588491e-05
## 9009    Jeff Foust          foundation’s    25 1573821 1.588491e-05
## 9010    Jeff Foust              franklin    25 1573821 1.588491e-05
## 9011    Jeff Foust              friendly    25 1573821 1.588491e-05
## 9012    Jeff Foust             grappling    25 1573821 1.588491e-05
## 9013    Jeff Foust                   hal    25 1573821 1.588491e-05
## 9014    Jeff Foust           helicopters    25 1573821 1.588491e-05
## 9015    Jeff Foust                honest    25 1573821 1.588491e-05
## 9016    Jeff Foust              igniting    25 1573821 1.588491e-05
## 9017    Jeff Foust             inability    25 1573821 1.588491e-05
## 9018    Jeff Foust          independence    25 1573821 1.588491e-05
## 9019    Jeff Foust             intention    25 1573821 1.588491e-05
## 9020    Jeff Foust                jarvis    25 1573821 1.588491e-05
## 9021    Jeff Foust                kelvin    25 1573821 1.588491e-05
## 9022    Jeff Foust                  kibo    25 1573821 1.588491e-05
## 9023    Jeff Foust             kilowatts    25 1573821 1.588491e-05
## 9024    Jeff Foust             landscape    25 1573821 1.588491e-05
## 9025    Jeff Foust                lapsed    25 1573821 1.588491e-05
## 9026    Jeff Foust               lawyers    25 1573821 1.588491e-05
## 9027    Jeff Foust               legally    25 1573821 1.588491e-05
## 9028    Jeff Foust               lighter    25 1573821 1.588491e-05
## 9029    Jeff Foust                locked    25 1573821 1.588491e-05
## 9030    Jeff Foust                  luck    25 1573821 1.588491e-05
## 9031    Jeff Foust          luxembourg’s    25 1573821 1.588491e-05
## 9032    Jeff Foust             maintains    25 1573821 1.588491e-05
## 9033    Jeff Foust               masucci    25 1573821 1.588491e-05
## 9034    Jeff Foust               matches    25 1573821 1.588491e-05
## 9035    Jeff Foust                 megan    25 1573821 1.588491e-05
## 9036    Jeff Foust            mentioning    25 1573821 1.588491e-05
## 9037    Jeff Foust                 merit    25 1573821 1.588491e-05
## 9038    Jeff Foust                meteor    25 1573821 1.588491e-05
## 9039    Jeff Foust            methanesat    25 1573821 1.588491e-05
## 9040    Jeff Foust                  mich    25 1573821 1.588491e-05
## 9041    Jeff Foust             moonlight    25 1573821 1.588491e-05
## 9042    Jeff Foust                  mu69    25 1573821 1.588491e-05
## 9043    Jeff Foust                murray    25 1573821 1.588491e-05
## 9044    Jeff Foust                  neck    25 1573821 1.588491e-05
## 9045    Jeff Foust           netherlands    25 1573821 1.588491e-05
## 9046    Jeff Foust               nextgen    25 1573821 1.588491e-05
## 9047    Jeff Foust            northrop’s    25 1573821 1.588491e-05
## 9048    Jeff Foust                   oco    25 1573821 1.588491e-05
## 9049    Jeff Foust                output    25 1573821 1.588491e-05
## 9050    Jeff Foust               overrun    25 1573821 1.588491e-05
## 9051    Jeff Foust                packed    25 1573821 1.588491e-05
## 9052    Jeff Foust               passion    25 1573821 1.588491e-05
## 9053    Jeff Foust               pillars    25 1573821 1.588491e-05
## 9054    Jeff Foust             pollution    25 1573821 1.588491e-05
## 9055    Jeff Foust             principle    25 1573821 1.588491e-05
## 9056    Jeff Foust            propulsive    25 1573821 1.588491e-05
## 9057    Jeff Foust                   pti    25 1573821 1.588491e-05
## 9058    Jeff Foust               ratings    25 1573821 1.588491e-05
## 9059    Jeff Foust               rebuild    25 1573821 1.588491e-05
## 9060    Jeff Foust            reentering    25 1573821 1.588491e-05
## 9061    Jeff Foust              reporter    25 1573821 1.588491e-05
## 9062    Jeff Foust            rideshares    25 1573821 1.588491e-05
## 9063    Jeff Foust          rocketdyne’s    25 1573821 1.588491e-05
## 9064    Jeff Foust               rosetta    25 1573821 1.588491e-05
## 9065    Jeff Foust                   sch    25 1573821 1.588491e-05
## 9066    Jeff Foust                  sean    25 1573821 1.588491e-05
## 9067    Jeff Foust                settle    25 1573821 1.588491e-05
## 9068    Jeff Foust            shortfalls    25 1573821 1.588491e-05
## 9069    Jeff Foust                 shots    25 1573821 1.588491e-05
## 9070    Jeff Foust             signature    25 1573821 1.588491e-05
## 9071    Jeff Foust                singer    25 1573821 1.588491e-05
## 9072    Jeff Foust               skyrora    25 1573821 1.588491e-05
## 9073    Jeff Foust                   sn8    25 1573821 1.588491e-05
## 9074    Jeff Foust            soliciting    25 1573821 1.588491e-05
## 9075    Jeff Foust               spanish    25 1573821 1.588491e-05
## 9076    Jeff Foust            specialist    25 1573821 1.588491e-05
## 9077    Jeff Foust               spire’s    25 1573821 1.588491e-05
## 9078    Jeff Foust                stibbe    25 1573821 1.588491e-05
## 9079    Jeff Foust                stored    25 1573821 1.588491e-05
## 9080    Jeff Foust         strengthening    25 1573821 1.588491e-05
## 9081    Jeff Foust         subcommittees    25 1573821 1.588491e-05
## 9082    Jeff Foust                sudden    25 1573821 1.588491e-05
## 9083    Jeff Foust                   sum    25 1573821 1.588491e-05
## 9084    Jeff Foust              supplied    25 1573821 1.588491e-05
## 9085    Jeff Foust               suspend    25 1573821 1.588491e-05
## 9086    Jeff Foust               telecom    25 1573821 1.588491e-05
## 9087    Jeff Foust            tensioning    25 1573821 1.588491e-05
## 9088    Jeff Foust                towers    25 1573821 1.588491e-05
## 9089    Jeff Foust                 ultra    25 1573821 1.588491e-05
## 9090    Jeff Foust           unfortunate    25 1573821 1.588491e-05
## 9091    Jeff Foust           unnecessary    25 1573821 1.588491e-05
## 9092    Jeff Foust             validated    25 1573821 1.588491e-05
## 9093    Jeff Foust                wailea    25 1573821 1.588491e-05
## 9094    Jeff Foust                 who’s    25 1573821 1.588491e-05
## 9095  Sandra Erwin          aggressively    25  716353 3.489900e-05
## 9096  Sandra Erwin               ambrose    25  716353 3.489900e-05
## 9097  Sandra Erwin              analytic    25  716353 3.489900e-05
## 9098  Sandra Erwin             appointed    25  716353 3.489900e-05
## 9099  Sandra Erwin                arrays    25  716353 3.489900e-05
## 9100  Sandra Erwin               bespoke    25  716353 3.489900e-05
## 9101  Sandra Erwin            biersgreen    25  716353 3.489900e-05
## 9102  Sandra Erwin               bombers    25  716353 3.489900e-05
## 9103  Sandra Erwin                camera    25  716353 3.489900e-05
## 9104  Sandra Erwin                chairs    25  716353 3.489900e-05
## 9105  Sandra Erwin         characterized    25  716353 3.489900e-05
## 9106  Sandra Erwin               charged    25  716353 3.489900e-05
## 9107  Sandra Erwin              colonels    25  716353 3.489900e-05
## 9108  Sandra Erwin            constantly    25  716353 3.489900e-05
## 9109  Sandra Erwin             construct    25  716353 3.489900e-05
## 9110  Sandra Erwin            controlled    25  716353 3.489900e-05
## 9111  Sandra Erwin         controversial    25  716353 3.489900e-05
## 9112  Sandra Erwin              counting    25  716353 3.489900e-05
## 9113  Sandra Erwin              creative    25  716353 3.489900e-05
## 9114  Sandra Erwin                  csco    25  716353 3.489900e-05
## 9115  Sandra Erwin          cyberattacks    25  716353 3.489900e-05
## 9116  Sandra Erwin                 dates    25  716353 3.489900e-05
## 9117  Sandra Erwin          difficulties    25  716353 3.489900e-05
## 9118  Sandra Erwin              dramatic    25  716353 3.489900e-05
## 9119  Sandra Erwin                 dream    25  716353 3.489900e-05
## 9120  Sandra Erwin                  drew    25  716353 3.489900e-05
## 9121  Sandra Erwin                dubbed    25  716353 3.489900e-05
## 9122  Sandra Erwin              entering    25  716353 3.489900e-05
## 9123  Sandra Erwin                  exit    25  716353 3.489900e-05
## 9124  Sandra Erwin               finance    25  716353 3.489900e-05
## 9125  Sandra Erwin               floated    25  716353 3.489900e-05
## 9126  Sandra Erwin               frankly    25  716353 3.489900e-05
## 9127  Sandra Erwin         fundamentally    25  716353 3.489900e-05
## 9128  Sandra Erwin                fusion    25  716353 3.489900e-05
## 9129  Sandra Erwin                   gas    25  716353 3.489900e-05
## 9130  Sandra Erwin          geopolitical    25  716353 3.489900e-05
## 9131  Sandra Erwin                  gnss    25  716353 3.489900e-05
## 9132  Sandra Erwin               grounds    25  716353 3.489900e-05
## 9133  Sandra Erwin                gwynne    25  716353 3.489900e-05
## 9134  Sandra Erwin               hammett    25  716353 3.489900e-05
## 9135  Sandra Erwin                hatted    25  716353 3.489900e-05
## 9136  Sandra Erwin               hazards    25  716353 3.489900e-05
## 9137  Sandra Erwin           highlighted    25  716353 3.489900e-05
## 9138  Sandra Erwin           incentivize    25  716353 3.489900e-05
## 9139  Sandra Erwin            instrument    25  716353 3.489900e-05
## 9140  Sandra Erwin            lauderdale    25  716353 3.489900e-05
## 9141  Sandra Erwin                laying    25  716353 3.489900e-05
## 9142  Sandra Erwin                   lee    25  716353 3.489900e-05
## 9143  Sandra Erwin            legitimate    25  716353 3.489900e-05
## 9144  Sandra Erwin                leidos    25  716353 3.489900e-05
## 9145  Sandra Erwin                limits    25  716353 3.489900e-05
## 9146  Sandra Erwin                 maven    25  716353 3.489900e-05
## 9147  Sandra Erwin               maximum    25  716353 3.489900e-05
## 9148  Sandra Erwin               minimal    25  716353 3.489900e-05
## 9149  Sandra Erwin                 modem    25  716353 3.489900e-05
## 9150  Sandra Erwin                module    25  716353 3.489900e-05
## 9151  Sandra Erwin                motion    25  716353 3.489900e-05
## 9152  Sandra Erwin             munitions    25  716353 3.489900e-05
## 9153  Sandra Erwin                narrow    25  716353 3.489900e-05
## 9154  Sandra Erwin           negotiating    25  716353 3.489900e-05
## 9155  Sandra Erwin                norway    25  716353 3.489900e-05
## 9156  Sandra Erwin              observed    25  716353 3.489900e-05
## 9157  Sandra Erwin                pacing    25  716353 3.489900e-05
## 9158  Sandra Erwin              people’s    25  716353 3.489900e-05
## 9159  Sandra Erwin               perfect    25  716353 3.489900e-05
## 9160  Sandra Erwin                pilots    25  716353 3.489900e-05
## 9161  Sandra Erwin            prioritize    25  716353 3.489900e-05
## 9162  Sandra Erwin           problematic    25  716353 3.489900e-05
## 9163  Sandra Erwin               proceed    25  716353 3.489900e-05
## 9164  Sandra Erwin                pulled    25  716353 3.489900e-05
## 9165  Sandra Erwin               recover    25  716353 3.489900e-05
## 9166  Sandra Erwin               reliant    25  716353 3.489900e-05
## 9167  Sandra Erwin         reprogramming    25  716353 3.489900e-05
## 9168  Sandra Erwin                retire    25  716353 3.489900e-05
## 9169  Sandra Erwin                 rogue    25  716353 3.489900e-05
## 9170  Sandra Erwin             routinely    25  716353 3.489900e-05
## 9171  Sandra Erwin                  ryan    25  716353 3.489900e-05
## 9172  Sandra Erwin           satellite’s    25  716353 3.489900e-05
## 9173  Sandra Erwin                   scn    25  716353 3.489900e-05
## 9174  Sandra Erwin                shifts    25  716353 3.489900e-05
## 9175  Sandra Erwin               stepped    25  716353 3.489900e-05
## 9176  Sandra Erwin               strikes    25  716353 3.489900e-05
## 9177  Sandra Erwin               studied    25  716353 3.489900e-05
## 9178  Sandra Erwin                 tacrl    25  716353 3.489900e-05
## 9179  Sandra Erwin       technologically    25  716353 3.489900e-05
## 9180  Sandra Erwin                   tim    25  716353 3.489900e-05
## 9181  Sandra Erwin             timeframe    25  716353 3.489900e-05
## 9182  Sandra Erwin          trajectories    25  716353 3.489900e-05
## 9183  Sandra Erwin          transactions    25  716353 3.489900e-05
## 9184  Sandra Erwin                 tweet    25  716353 3.489900e-05
## 9185  Sandra Erwin                unable    25  716353 3.489900e-05
## 9186  Sandra Erwin           undisclosed    25  716353 3.489900e-05
## 9187  Sandra Erwin                  wall    25  716353 3.489900e-05
## 9188  Sandra Erwin              workshop    25  716353 3.489900e-05
## 9189    Jeff Foust         accommodating    24 1573821 1.524951e-05
## 9190    Jeff Foust                 adapt    24 1573821 1.524951e-05
## 9191    Jeff Foust             adjusting    24 1573821 1.524951e-05
## 9192    Jeff Foust              advisers    24 1573821 1.524951e-05
## 9193    Jeff Foust                   aei    24 1573821 1.524951e-05
## 9194    Jeff Foust                   agu    24 1573821 1.524951e-05
## 9195    Jeff Foust                albeit    24 1573821 1.524951e-05
## 9196    Jeff Foust             anomalous    24 1573821 1.524951e-05
## 9197    Jeff Foust             architect    24 1573821 1.524951e-05
## 9198    Jeff Foust                 arise    24 1573821 1.524951e-05
## 9199    Jeff Foust             automatic    24 1573821 1.524951e-05
## 9200    Jeff Foust                  avum    24 1573821 1.524951e-05
## 9201    Jeff Foust               banking    24 1573821 1.524951e-05
## 9202    Jeff Foust                   bar    24 1573821 1.524951e-05
## 9203    Jeff Foust               beijing    24 1573821 1.524951e-05
## 9204    Jeff Foust              berthing    24 1573821 1.524951e-05
## 9205    Jeff Foust            burgeoning    24 1573821 1.524951e-05
## 9206    Jeff Foust                burned    24 1573821 1.524951e-05
## 9207    Jeff Foust                 chips    24 1573821 1.524951e-05
## 9208    Jeff Foust              choosing    24 1573821 1.524951e-05
## 9209    Jeff Foust                client    24 1573821 1.524951e-05
## 9210    Jeff Foust                  cone    24 1573821 1.524951e-05
## 9211    Jeff Foust           connections    24 1573821 1.524951e-05
## 9212    Jeff Foust              consists    24 1573821 1.524951e-05
## 9213    Jeff Foust                cooled    24 1573821 1.524951e-05
## 9214    Jeff Foust               counter    24 1573821 1.524951e-05
## 9215    Jeff Foust            customized    24 1573821 1.524951e-05
## 9216    Jeff Foust            decreasing    24 1573821 1.524951e-05
## 9217    Jeff Foust               defines    24 1573821 1.524951e-05
## 9218    Jeff Foust            delegation    24 1573821 1.524951e-05
## 9219    Jeff Foust             diagnosed    24 1573821 1.524951e-05
## 9220    Jeff Foust              discount    24 1573821 1.524951e-05
## 9221    Jeff Foust             displayed    24 1573821 1.524951e-05
## 9222    Jeff Foust               dittmar    24 1573821 1.524951e-05
## 9223    Jeff Foust             donations    24 1573821 1.524951e-05
## 9224    Jeff Foust               drawing    24 1573821 1.524951e-05
## 9225    Jeff Foust                drogue    24 1573821 1.524951e-05
## 9226    Jeff Foust                   edf    24 1573821 1.524951e-05
## 9227    Jeff Foust               embassy    24 1573821 1.524951e-05
## 9228    Jeff Foust             endorsing    24 1573821 1.524951e-05
## 9229    Jeff Foust              entrants    24 1573821 1.524951e-05
## 9230    Jeff Foust            equatorial    24 1573821 1.524951e-05
## 9231    Jeff Foust            exceptions    24 1573821 1.524951e-05
## 9232    Jeff Foust              excluded    24 1573821 1.524951e-05
## 9233    Jeff Foust               exposed    24 1573821 1.524951e-05
## 9234    Jeff Foust            extraction    24 1573821 1.524951e-05
## 9235    Jeff Foust                  flex    24 1573821 1.524951e-05
## 9236    Jeff Foust                freely    24 1573821 1.524951e-05
## 9237    Jeff Foust                geneva    24 1573821 1.524951e-05
## 9238    Jeff Foust                 geoxo    24 1573821 1.524951e-05
## 9239    Jeff Foust                  girl    24 1573821 1.524951e-05
## 9240    Jeff Foust               gliding    24 1573821 1.524951e-05
## 9241    Jeff Foust                golden    24 1573821 1.524951e-05
## 9242    Jeff Foust               grounds    24 1573821 1.524951e-05
## 9243    Jeff Foust               halting    24 1573821 1.524951e-05
## 9244    Jeff Foust                helmet    24 1573821 1.524951e-05
## 9245    Jeff Foust                 hiber    24 1573821 1.524951e-05
## 9246    Jeff Foust             impacting    24 1573821 1.524951e-05
## 9247    Jeff Foust             injection    24 1573821 1.524951e-05
## 9248    Jeff Foust            intelsat’s    24 1573821 1.524951e-05
## 9249    Jeff Foust           introducing    24 1573821 1.524951e-05
## 9250    Jeff Foust             ivanishin    24 1573821 1.524951e-05
## 9251    Jeff Foust                  jane    24 1573821 1.524951e-05
## 9252    Jeff Foust                 larry    24 1573821 1.524951e-05
## 9253    Jeff Foust                 lemur    24 1573821 1.524951e-05
## 9254    Jeff Foust                leshin    24 1573821 1.524951e-05
## 9255    Jeff Foust               lobbied    24 1573821 1.524951e-05
## 9256    Jeff Foust                   loc    24 1573821 1.524951e-05
## 9257    Jeff Foust                   lox    24 1573821 1.524951e-05
## 9258    Jeff Foust                    m1    24 1573821 1.524951e-05
## 9259    Jeff Foust        malfunctioning    24 1573821 1.524951e-05
## 9260    Jeff Foust            maneuvered    24 1573821 1.524951e-05
## 9261    Jeff Foust              mcerlean    24 1573821 1.524951e-05
## 9262    Jeff Foust               midterm    24 1573821 1.524951e-05
## 9263    Jeff Foust               minibus    24 1573821 1.524951e-05
## 9264    Jeff Foust              minority    24 1573821 1.524951e-05
## 9265    Jeff Foust                 moore    24 1573821 1.524951e-05
## 9266    Jeff Foust          multilateral    24 1573821 1.524951e-05
## 9267    Jeff Foust                  oadr    24 1573821 1.524951e-05
## 9268    Jeff Foust           observables    24 1573821 1.524951e-05
## 9269    Jeff Foust                  oewg    24 1573821 1.524951e-05
## 9270    Jeff Foust             overnight    24 1573821 1.524951e-05
## 9271    Jeff Foust                 paths    24 1573821 1.524951e-05
## 9272    Jeff Foust                paused    24 1573821 1.524951e-05
## 9273    Jeff Foust                  peer    24 1573821 1.524951e-05
## 9274    Jeff Foust               perigee    24 1573821 1.524951e-05
## 9275    Jeff Foust               petelin    24 1573821 1.524951e-05
## 9276    Jeff Foust               plane’s    24 1573821 1.524951e-05
## 9277    Jeff Foust              polyakov    24 1573821 1.524951e-05
## 9278    Jeff Foust                 pratt    24 1573821 1.524951e-05
## 9279    Jeff Foust             precisely    24 1573821 1.524951e-05
## 9280    Jeff Foust            preserving    24 1573821 1.524951e-05
## 9281    Jeff Foust               pulling    24 1573821 1.524951e-05
## 9282    Jeff Foust                  rain    24 1573821 1.524951e-05
## 9283    Jeff Foust                rarely    24 1573821 1.524951e-05
## 9284    Jeff Foust              reactors    24 1573821 1.524951e-05
## 9285    Jeff Foust           reauthorize    24 1573821 1.524951e-05
## 9286    Jeff Foust             regulator    24 1573821 1.524951e-05
## 9287    Jeff Foust               reisman    24 1573821 1.524951e-05
## 9288    Jeff Foust          replacements    24 1573821 1.524951e-05
## 9289    Jeff Foust                 reset    24 1573821 1.524951e-05
## 9290    Jeff Foust            respective    24 1573821 1.524951e-05
## 9291    Jeff Foust              revising    24 1573821 1.524951e-05
## 9292    Jeff Foust             rogozin’s    24 1573821 1.524951e-05
## 9293    Jeff Foust                   row    24 1573821 1.524951e-05
## 9294    Jeff Foust                rubber    24 1573821 1.524951e-05
## 9295    Jeff Foust               satisfy    24 1573821 1.524951e-05
## 9296    Jeff Foust            schumacher    24 1573821 1.524951e-05
## 9297    Jeff Foust               seismic    24 1573821 1.524951e-05
## 9298    Jeff Foust              servants    24 1573821 1.524951e-05
## 9299    Jeff Foust                 sivan    24 1573821 1.524951e-05
## 9300    Jeff Foust                 skill    24 1573821 1.524951e-05
## 9301    Jeff Foust                solved    24 1573821 1.524951e-05
## 9302    Jeff Foust               sounded    24 1573821 1.524951e-05
## 9303    Jeff Foust          standardized    24 1573821 1.524951e-05
## 9304    Jeff Foust               stellar    24 1573821 1.524951e-05
## 9305    Jeff Foust               stopgap    24 1573821 1.524951e-05
## 9306    Jeff Foust              strictly    24 1573821 1.524951e-05
## 9307    Jeff Foust          supplemental    24 1573821 1.524951e-05
## 9308    Jeff Foust                  tape    24 1573821 1.524951e-05
## 9309    Jeff Foust                tenant    24 1573821 1.524951e-05
## 9310    Jeff Foust        thermoelectric    24 1573821 1.524951e-05
## 9311    Jeff Foust                thirty    24 1573821 1.524951e-05
## 9312    Jeff Foust           threatening    24 1573821 1.524951e-05
## 9313    Jeff Foust              tianzhou    24 1573821 1.524951e-05
## 9314    Jeff Foust                ticker    24 1573821 1.524951e-05
## 9315    Jeff Foust              traveled    24 1573821 1.524951e-05
## 9316    Jeff Foust           unavailable    24 1573821 1.524951e-05
## 9317    Jeff Foust             unusually    24 1573821 1.524951e-05
## 9318    Jeff Foust                vendor    24 1573821 1.524951e-05
## 9319    Jeff Foust                 warns    24 1573821 1.524951e-05
## 9320    Jeff Foust                  wood    24 1573821 1.524951e-05
## 9321    Jeff Foust                zvezda    24 1573821 1.524951e-05
## 9322  Sandra Erwin                 abort    24  716353 3.350304e-05
## 9323  Sandra Erwin             activated    24  716353 3.350304e-05
## 9324  Sandra Erwin                   afa    24  716353 3.350304e-05
## 9325  Sandra Erwin             alignment    24  716353 3.350304e-05
## 9326  Sandra Erwin                 allen    24  716353 3.350304e-05
## 9327  Sandra Erwin             allocated    24  716353 3.350304e-05
## 9328  Sandra Erwin           appointment    24  716353 3.350304e-05
## 9329  Sandra Erwin             associate    24  716353 3.350304e-05
## 9330  Sandra Erwin                  burn    24  716353 3.350304e-05
## 9331  Sandra Erwin              cautions    24  716353 3.350304e-05
## 9332  Sandra Erwin              ceperley    24  716353 3.350304e-05
## 9333  Sandra Erwin                 check    24  716353 3.350304e-05
## 9334  Sandra Erwin              checkout    24  716353 3.350304e-05
## 9335  Sandra Erwin               choices    24  716353 3.350304e-05
## 9336  Sandra Erwin            compelling    24  716353 3.350304e-05
## 9337  Sandra Erwin            complement    24  716353 3.350304e-05
## 9338  Sandra Erwin                 comso    24  716353 3.350304e-05
## 9339  Sandra Erwin            connection    24  716353 3.350304e-05
## 9340  Sandra Erwin           connections    24  716353 3.350304e-05
## 9341  Sandra Erwin              credible    24  716353 3.350304e-05
## 9342  Sandra Erwin                  dark    24  716353 3.350304e-05
## 9343  Sandra Erwin              defining    24  716353 3.350304e-05
## 9344  Sandra Erwin               degrees    24  716353 3.350304e-05
## 9345  Sandra Erwin               denmark    24  716353 3.350304e-05
## 9346  Sandra Erwin         determination    24  716353 3.350304e-05
## 9347  Sandra Erwin              duration    24  716353 3.350304e-05
## 9348  Sandra Erwin          enhancements    24  716353 3.350304e-05
## 9349  Sandra Erwin                entity    24  716353 3.350304e-05
## 9350  Sandra Erwin               entrant    24  716353 3.350304e-05
## 9351  Sandra Erwin                  espa    24  716353 3.350304e-05
## 9352  Sandra Erwin                 falls    24  716353 3.350304e-05
## 9353  Sandra Erwin                favors    24  716353 3.350304e-05
## 9354  Sandra Erwin             finalized    24  716353 3.350304e-05
## 9355  Sandra Erwin               fueling    24  716353 3.350304e-05
## 9356  Sandra Erwin                govini    24  716353 3.350304e-05
## 9357  Sandra Erwin                guided    24  716353 3.350304e-05
## 9358  Sandra Erwin              historic    24  716353 3.350304e-05
## 9359  Sandra Erwin                 holds    24  716353 3.350304e-05
## 9360  Sandra Erwin                hurdle    24  716353 3.350304e-05
## 9361  Sandra Erwin           hypersonics    24  716353 3.350304e-05
## 9362  Sandra Erwin        identification    24  716353 3.350304e-05
## 9363  Sandra Erwin             increment    24  716353 3.350304e-05
## 9364  Sandra Erwin                 input    24  716353 3.350304e-05
## 9365  Sandra Erwin            inspection    24  716353 3.350304e-05
## 9366  Sandra Erwin          installation    24  716353 3.350304e-05
## 9367  Sandra Erwin                kicked    24  716353 3.350304e-05
## 9368  Sandra Erwin             landscape    24  716353 3.350304e-05
## 9369  Sandra Erwin                leases    24  716353 3.350304e-05
## 9370  Sandra Erwin              leonardo    24  716353 3.350304e-05
## 9371  Sandra Erwin                listed    24  716353 3.350304e-05
## 9372  Sandra Erwin             literally    24  716353 3.350304e-05
## 9373  Sandra Erwin                merged    24  716353 3.350304e-05
## 9374  Sandra Erwin             microwave    24  716353 3.350304e-05
## 9375  Sandra Erwin              minotaur    24  716353 3.350304e-05
## 9376  Sandra Erwin               modeled    24  716353 3.350304e-05
## 9377  Sandra Erwin                nozzle    24  716353 3.350304e-05
## 9378  Sandra Erwin                   o3b    24  716353 3.350304e-05
## 9379  Sandra Erwin             observers    24  716353 3.350304e-05
## 9380  Sandra Erwin              occurred    24  716353 3.350304e-05
## 9381  Sandra Erwin                oppose    24  716353 3.350304e-05
## 9382  Sandra Erwin                  pays    24  716353 3.350304e-05
## 9383  Sandra Erwin             predicted    24  716353 3.350304e-05
## 9384  Sandra Erwin              promoted    24  716353 3.350304e-05
## 9385  Sandra Erwin                raises    24  716353 3.350304e-05
## 9386  Sandra Erwin               raising    24  716353 3.350304e-05
## 9387  Sandra Erwin               ramping    24  716353 3.350304e-05
## 9388  Sandra Erwin            reportedly    24  716353 3.350304e-05
## 9389  Sandra Erwin             represent    24  716353 3.350304e-05
## 9390  Sandra Erwin              resulted    24  716353 3.350304e-05
## 9391  Sandra Erwin               rethink    24  716353 3.350304e-05
## 9392  Sandra Erwin                reveal    24  716353 3.350304e-05
## 9393  Sandra Erwin                  ring    24  716353 3.350304e-05
## 9394  Sandra Erwin                 sears    24  716353 3.350304e-05
## 9395  Sandra Erwin                  smdc    24  716353 3.350304e-05
## 9396  Sandra Erwin        spacelogistics    24  716353 3.350304e-05
## 9397  Sandra Erwin            standpoint    24  716353 3.350304e-05
## 9398  Sandra Erwin              strength    24  716353 3.350304e-05
## 9399  Sandra Erwin                 surge    24  716353 3.350304e-05
## 9400  Sandra Erwin           surrounding    24  716353 3.350304e-05
## 9401  Sandra Erwin             sustained    24  716353 3.350304e-05
## 9402  Sandra Erwin                 tells    24  716353 3.350304e-05
## 9403  Sandra Erwin                  tied    24  716353 3.350304e-05
## 9404  Sandra Erwin                touted    24  716353 3.350304e-05
## 9405  Sandra Erwin          transitioned    24  716353 3.350304e-05
## 9406  Sandra Erwin             validated    24  716353 3.350304e-05
## 9407  Sandra Erwin            validation    24  716353 3.350304e-05
## 9408  Sandra Erwin            widespread    24  716353 3.350304e-05
## 9409    Jeff Foust          acknowledges    23 1573821 1.461411e-05
## 9410    Jeff Foust               adverse    23 1573821 1.461411e-05
## 9411    Jeff Foust           aspirations    23 1573821 1.461411e-05
## 9412    Jeff Foust            associates    23 1573821 1.461411e-05
## 9413    Jeff Foust               attacks    23 1573821 1.461411e-05
## 9414    Jeff Foust                bailey    23 1573821 1.461411e-05
## 9415    Jeff Foust                barack    23 1573821 1.461411e-05
## 9416    Jeff Foust             benchmark    23 1573821 1.461411e-05
## 9417    Jeff Foust                  buys    23 1573821 1.461411e-05
## 9418    Jeff Foust                  camp    23 1573821 1.461411e-05
## 9419    Jeff Foust              canister    23 1573821 1.461411e-05
## 9420    Jeff Foust                  cast    23 1573821 1.461411e-05
## 9421    Jeff Foust          catastrophic    23 1573821 1.461411e-05
## 9422    Jeff Foust              checkout    23 1573821 1.461411e-05
## 9423    Jeff Foust             companion    23 1573821 1.461411e-05
## 9424    Jeff Foust          corporations    23 1573821 1.461411e-05
## 9425    Jeff Foust            correcting    23 1573821 1.461411e-05
## 9426    Jeff Foust            correction    23 1573821 1.461411e-05
## 9427    Jeff Foust            crewmember    23 1573821 1.461411e-05
## 9428    Jeff Foust                 cubic    23 1573821 1.461411e-05
## 9429    Jeff Foust                cupola    23 1573821 1.461411e-05
## 9430    Jeff Foust                cycles    23 1573821 1.461411e-05
## 9431    Jeff Foust               debated    23 1573821 1.461411e-05
## 9432    Jeff Foust                defect    23 1573821 1.461411e-05
## 9433    Jeff Foust              defining    23 1573821 1.461411e-05
## 9434    Jeff Foust                dennis    23 1573821 1.461411e-05
## 9435    Jeff Foust             deployers    23 1573821 1.461411e-05
## 9436    Jeff Foust              displays    23 1573821 1.461411e-05
## 9437    Jeff Foust                 dnepr    23 1573821 1.461411e-05
## 9438    Jeff Foust            elaborated    23 1573821 1.461411e-05
## 9439    Jeff Foust          enhancements    23 1573821 1.461411e-05
## 9440    Jeff Foust                 essay    23 1573821 1.461411e-05
## 9441    Jeff Foust               essence    23 1573821 1.461411e-05
## 9442    Jeff Foust               explode    23 1573821 1.461411e-05
## 9443    Jeff Foust                    fe    23 1573821 1.461411e-05
## 9444    Jeff Foust                 floyd    23 1573821 1.461411e-05
## 9445    Jeff Foust                friend    23 1573821 1.461411e-05
## 9446    Jeff Foust                garvey    23 1573821 1.461411e-05
## 9447    Jeff Foust                  grid    23 1573821 1.461411e-05
## 9448    Jeff Foust            hedosophia    23 1573821 1.461411e-05
## 9449    Jeff Foust               highway    23 1573821 1.461411e-05
## 9450    Jeff Foust                hopper    23 1573821 1.461411e-05
## 9451    Jeff Foust              incurred    23 1573821 1.461411e-05
## 9452    Jeff Foust           institution    23 1573821 1.461411e-05
## 9453    Jeff Foust        interferometer    23 1573821 1.461411e-05
## 9454    Jeff Foust           interpreted    23 1573821 1.461411e-05
## 9455    Jeff Foust        intersatellite    23 1573821 1.461411e-05
## 9456    Jeff Foust                jensen    23 1573821 1.461411e-05
## 9457    Jeff Foust         justification    23 1573821 1.461411e-05
## 9458    Jeff Foust                   kan    23 1573821 1.461411e-05
## 9459    Jeff Foust                laurel    23 1573821 1.461411e-05
## 9460    Jeff Foust           legislature    23 1573821 1.461411e-05
## 9461    Jeff Foust                leslie    23 1573821 1.461411e-05
## 9462    Jeff Foust                 lewis    23 1573821 1.461411e-05
## 9463    Jeff Foust                 limbo    23 1573821 1.461411e-05
## 9464    Jeff Foust             macdonald    23 1573821 1.461411e-05
## 9465    Jeff Foust                   maj    23 1573821 1.461411e-05
## 9466    Jeff Foust             marshburn    23 1573821 1.461411e-05
## 9467    Jeff Foust              martinez    23 1573821 1.461411e-05
## 9468    Jeff Foust                 mated    23 1573821 1.461411e-05
## 9469    Jeff Foust               methods    23 1573821 1.461411e-05
## 9470    Jeff Foust                  mile    23 1573821 1.461411e-05
## 9471    Jeff Foust                   mro    23 1573821 1.461411e-05
## 9472    Jeff Foust                 muncy    23 1573821 1.461411e-05
## 9473    Jeff Foust             naturally    23 1573821 1.461411e-05
## 9474    Jeff Foust                  ngso    23 1573821 1.461411e-05
## 9475    Jeff Foust                nicola    23 1573821 1.461411e-05
## 9476    Jeff Foust              occupied    23 1573821 1.461411e-05
## 9477    Jeff Foust               offline    23 1573821 1.461411e-05
## 9478    Jeff Foust            operator’s    23 1573821 1.461411e-05
## 9479    Jeff Foust                   osc    23 1573821 1.461411e-05
## 9480    Jeff Foust              outbreak    23 1573821 1.461411e-05
## 9481    Jeff Foust                parikh    23 1573821 1.461411e-05
## 9482    Jeff Foust                 pathy    23 1573821 1.461411e-05
## 9483    Jeff Foust                 peake    23 1573821 1.461411e-05
## 9484    Jeff Foust        pharmaceutical    23 1573821 1.461411e-05
## 9485    Jeff Foust                poised    23 1573821 1.461411e-05
## 9486    Jeff Foust            possession    23 1573821 1.461411e-05
## 9487    Jeff Foust             prompting    23 1573821 1.461411e-05
## 9488    Jeff Foust                 pumps    23 1573821 1.461411e-05
## 9489    Jeff Foust                purely    23 1573821 1.461411e-05
## 9490    Jeff Foust               pursued    23 1573821 1.461411e-05
## 9491    Jeff Foust                quilty    23 1573821 1.461411e-05
## 9492    Jeff Foust                 realm    23 1573821 1.461411e-05
## 9493    Jeff Foust            reconciled    23 1573821 1.461411e-05
## 9494    Jeff Foust         reconstituted    23 1573821 1.461411e-05
## 9495    Jeff Foust                 refer    23 1573821 1.461411e-05
## 9496    Jeff Foust              reminder    23 1573821 1.461411e-05
## 9497    Jeff Foust                rescue    23 1573821 1.461411e-05
## 9498    Jeff Foust            researcher    23 1573821 1.461411e-05
## 9499    Jeff Foust                robots    23 1573821 1.461411e-05
## 9500    Jeff Foust               rumored    23 1573821 1.461411e-05
## 9501    Jeff Foust                   sam    23 1573821 1.461411e-05
## 9502    Jeff Foust               scimemi    23 1573821 1.461411e-05
## 9503    Jeff Foust               selects    23 1573821 1.461411e-05
## 9504    Jeff Foust               sequoia    23 1573821 1.461411e-05
## 9505    Jeff Foust                sergei    23 1573821 1.461411e-05
## 9506    Jeff Foust               shaheen    23 1573821 1.461411e-05
## 9507    Jeff Foust            simulation    23 1573821 1.461411e-05
## 9508    Jeff Foust               species    23 1573821 1.461411e-05
## 9509    Jeff Foust               spherex    23 1573821 1.461411e-05
## 9510    Jeff Foust                stofan    23 1573821 1.461411e-05
## 9511    Jeff Foust                strict    23 1573821 1.461411e-05
## 9512    Jeff Foust             stringent    23 1573821 1.461411e-05
## 9513    Jeff Foust                struck    23 1573821 1.461411e-05
## 9514    Jeff Foust            successors    23 1573821 1.461411e-05
## 9515    Jeff Foust               takeshi    23 1573821 1.461411e-05
## 9516    Jeff Foust                   tel    23 1573821 1.461411e-05
## 9517    Jeff Foust                 title    23 1573821 1.461411e-05
## 9518    Jeff Foust             touchdown    23 1573821 1.461411e-05
## 9519    Jeff Foust                tracss    23 1573821 1.461411e-05
## 9520    Jeff Foust          transponders    23 1573821 1.461411e-05
## 9521    Jeff Foust              tumbling    23 1573821 1.461411e-05
## 9522    Jeff Foust                 u.a.e    23 1573821 1.461411e-05
## 9523    Jeff Foust            unaffected    23 1573821 1.461411e-05
## 9524    Jeff Foust           undertaking    23 1573821 1.461411e-05
## 9525    Jeff Foust           unrealistic    23 1573821 1.461411e-05
## 9526    Jeff Foust               vendors    23 1573821 1.461411e-05
## 9527    Jeff Foust                vikram    23 1573821 1.461411e-05
## 9528    Jeff Foust               volumes    23 1573821 1.461411e-05
## 9529    Jeff Foust                 weber    23 1573821 1.461411e-05
## 9530    Jeff Foust                   wrc    23 1573821 1.461411e-05
## 9531    Jeff Foust                 xevas    23 1573821 1.461411e-05
## 9532    Jeff Foust              yuzhnoye    23 1573821 1.461411e-05
## 9533  Sandra Erwin          accompanying    23  716353 3.210708e-05
## 9534  Sandra Erwin             achieving    23  716353 3.210708e-05
## 9535  Sandra Erwin              adequate    23  716353 3.210708e-05
## 9536  Sandra Erwin                advise    23  716353 3.210708e-05
## 9537  Sandra Erwin               advises    23  716353 3.210708e-05
## 9538  Sandra Erwin                africa    23  716353 3.210708e-05
## 9539  Sandra Erwin                alenia    23  716353 3.210708e-05
## 9540  Sandra Erwin                   ar1    23  716353 3.210708e-05
## 9541  Sandra Erwin             assessing    23  716353 3.210708e-05
## 9542  Sandra Erwin              attitude    23  716353 3.210708e-05
## 9543  Sandra Erwin            attracting    23  716353 3.210708e-05
## 9544  Sandra Erwin                 beach    23  716353 3.210708e-05
## 9545  Sandra Erwin                broken    23  716353 3.210708e-05
## 9546  Sandra Erwin                 buyer    23  716353 3.210708e-05
## 9547  Sandra Erwin                  caci    23  716353 3.210708e-05
## 9548  Sandra Erwin                cadets    23  716353 3.210708e-05
## 9549  Sandra Erwin            calvelli’s    23  716353 3.210708e-05
## 9550  Sandra Erwin               carries    23  716353 3.210708e-05
## 9551  Sandra Erwin                  casr    23  716353 3.210708e-05
## 9552  Sandra Erwin                 clark    23  716353 3.210708e-05
## 9553  Sandra Erwin            colleagues    23  716353 3.210708e-05
## 9554  Sandra Erwin            comparable    23  716353 3.210708e-05
## 9555  Sandra Erwin            compliance    23  716353 3.210708e-05
## 9556  Sandra Erwin               confirm    23  716353 3.210708e-05
## 9557  Sandra Erwin                deanna    23  716353 3.210708e-05
## 9558  Sandra Erwin            deliveries    23  716353 3.210708e-05
## 9559  Sandra Erwin             destroyed    23  716353 3.210708e-05
## 9560  Sandra Erwin                deucsi    23  716353 3.210708e-05
## 9561  Sandra Erwin             diplomacy    23  716353 3.210708e-05
## 9562  Sandra Erwin             diversify    23  716353 3.210708e-05
## 9563  Sandra Erwin                  dock    23  716353 3.210708e-05
## 9564  Sandra Erwin                 doubt    23  716353 3.210708e-05
## 9565  Sandra Erwin                 draco    23  716353 3.210708e-05
## 9566  Sandra Erwin                draper    23  716353 3.210708e-05
## 9567  Sandra Erwin                    dt    23  716353 3.210708e-05
## 9568  Sandra Erwin               ensures    23  716353 3.210708e-05
## 9569  Sandra Erwin               entered    23  716353 3.210708e-05
## 9570  Sandra Erwin           establishes    23  716353 3.210708e-05
## 9571  Sandra Erwin              europe’s    23  716353 3.210708e-05
## 9572  Sandra Erwin                 fails    23  716353 3.210708e-05
## 9573  Sandra Erwin                  fine    23  716353 3.210708e-05
## 9574  Sandra Erwin                fought    23  716353 3.210708e-05
## 9575  Sandra Erwin              friendly    23  716353 3.210708e-05
## 9576  Sandra Erwin                 grows    23  716353 3.210708e-05
## 9577  Sandra Erwin               horizon    23  716353 3.210708e-05
## 9578  Sandra Erwin          humanitarian    23  716353 3.210708e-05
## 9579  Sandra Erwin               hundred    23  716353 3.210708e-05
## 9580  Sandra Erwin               impulse    23  716353 3.210708e-05
## 9581  Sandra Erwin             inventory    23  716353 3.210708e-05
## 9582  Sandra Erwin                iran’s    23  716353 3.210708e-05
## 9583  Sandra Erwin                   iss    23  716353 3.210708e-05
## 9584  Sandra Erwin               journey    23  716353 3.210708e-05
## 9585  Sandra Erwin                 kelly    23  716353 3.210708e-05
## 9586  Sandra Erwin               layered    23  716353 3.210708e-05
## 9587  Sandra Erwin                 lewis    23  716353 3.210708e-05
## 9588  Sandra Erwin              machines    23  716353 3.210708e-05
## 9589  Sandra Erwin                marked    23  716353 3.210708e-05
## 9590  Sandra Erwin              messages    23  716353 3.210708e-05
## 9591  Sandra Erwin         modifications    23  716353 3.210708e-05
## 9592  Sandra Erwin         multinational    23  716353 3.210708e-05
## 9593  Sandra Erwin              navigate    23  716353 3.210708e-05
## 9594  Sandra Erwin           nominations    23  716353 3.210708e-05
## 9595  Sandra Erwin                noting    23  716353 3.210708e-05
## 9596  Sandra Erwin               omnibus    23  716353 3.210708e-05
## 9597  Sandra Erwin              oneweb’s    23  716353 3.210708e-05
## 9598  Sandra Erwin            opposition    23  716353 3.210708e-05
## 9599  Sandra Erwin              overcome    23  716353 3.210708e-05
## 9600  Sandra Erwin             photonics    23  716353 3.210708e-05
## 9601  Sandra Erwin               pitched    23  716353 3.210708e-05
## 9602  Sandra Erwin               pitches    23  716353 3.210708e-05
## 9603  Sandra Erwin                  poor    23  716353 3.210708e-05
## 9604  Sandra Erwin              preserve    23  716353 3.210708e-05
## 9605  Sandra Erwin           probability    23  716353 3.210708e-05
## 9606  Sandra Erwin                profit    23  716353 3.210708e-05
## 9607  Sandra Erwin              proposes    23  716353 3.210708e-05
## 9608  Sandra Erwin             rationale    23  716353 3.210708e-05
## 9609  Sandra Erwin             referring    23  716353 3.210708e-05
## 9610  Sandra Erwin            regulators    23  716353 3.210708e-05
## 9611  Sandra Erwin                repeat    23  716353 3.210708e-05
## 9612  Sandra Erwin               roberts    23  716353 3.210708e-05
## 9613  Sandra Erwin               sending    23  716353 3.210708e-05
## 9614  Sandra Erwin                 sends    23  716353 3.210708e-05
## 9615  Sandra Erwin                 shake    23  716353 3.210708e-05
## 9616  Sandra Erwin                shaped    23  716353 3.210708e-05
## 9617  Sandra Erwin              shortage    23  716353 3.210708e-05
## 9618  Sandra Erwin         solicitations    23  716353 3.210708e-05
## 9619  Sandra Erwin                  stem    23  716353 3.210708e-05
## 9620  Sandra Erwin                steven    23  716353 3.210708e-05
## 9621  Sandra Erwin                 stock    23  716353 3.210708e-05
## 9622  Sandra Erwin            submarines    23  716353 3.210708e-05
## 9623  Sandra Erwin                taylor    23  716353 3.210708e-05
## 9624  Sandra Erwin            threatened    23  716353 3.210708e-05
## 9625  Sandra Erwin                  tier    23  716353 3.210708e-05
## 9626  Sandra Erwin            undergoing    23  716353 3.210708e-05
## 9627  Sandra Erwin               upfront    23  716353 3.210708e-05
## 9628  Sandra Erwin                   usa    23  716353 3.210708e-05
## 9629  Sandra Erwin                 usual    23  716353 3.210708e-05
## 9630  Sandra Erwin               variant    23  716353 3.210708e-05
## 9631  Sandra Erwin                victus    23  716353 3.210708e-05
## 9632  Sandra Erwin                walden    23  716353 3.210708e-05
## 9633  Sandra Erwin                warren    23  716353 3.210708e-05
## 9634  Sandra Erwin                 weigh    23  716353 3.210708e-05
## 9635  Sandra Erwin                 wider    23  716353 3.210708e-05
## 9636    Jeff Foust                  18th    22 1573821 1.397872e-05
## 9637    Jeff Foust                  35th    22 1573821 1.397872e-05
## 9638    Jeff Foust               abandon    22 1573821 1.397872e-05
## 9639    Jeff Foust           accelerates    22 1573821 1.397872e-05
## 9640    Jeff Foust              advisors    22 1573821 1.397872e-05
## 9641    Jeff Foust                aerial    22 1573821 1.397872e-05
## 9642    Jeff Foust          aeronautical    22 1573821 1.397872e-05
## 9643    Jeff Foust           aerospace’s    22 1573821 1.397872e-05
## 9644    Jeff Foust            analytical    22 1573821 1.397872e-05
## 9645    Jeff Foust             arranging    22 1573821 1.397872e-05
## 9646    Jeff Foust                barron    22 1573821 1.397872e-05
## 9647    Jeff Foust                  bera    22 1573821 1.397872e-05
## 9648    Jeff Foust          billionaires    22 1573821 1.397872e-05
## 9649    Jeff Foust                 blame    22 1573821 1.397872e-05
## 9650    Jeff Foust                  born    22 1573821 1.397872e-05
## 9651    Jeff Foust                  boss    22 1573821 1.397872e-05
## 9652    Jeff Foust                 bowen    22 1573821 1.397872e-05
## 9653    Jeff Foust           bulgariasat    22 1573821 1.397872e-05
## 9654    Jeff Foust             canceling    22 1573821 1.397872e-05
## 9655    Jeff Foust            challenged    22 1573821 1.397872e-05
## 9656    Jeff Foust             checkouts    22 1573821 1.397872e-05
## 9657    Jeff Foust               choices    22 1573821 1.397872e-05
## 9658    Jeff Foust             christmas    22 1573821 1.397872e-05
## 9659    Jeff Foust        classification    22 1573821 1.397872e-05
## 9660    Jeff Foust              collects    22 1573821 1.397872e-05
## 9661    Jeff Foust              columbus    22 1573821 1.397872e-05
## 9662    Jeff Foust          considerably    22 1573821 1.397872e-05
## 9663    Jeff Foust             criticize    22 1573821 1.397872e-05
## 9664    Jeff Foust           culminating    22 1573821 1.397872e-05
## 9665    Jeff Foust                cutoff    22 1573821 1.397872e-05
## 9666    Jeff Foust               davinci    22 1573821 1.397872e-05
## 9667    Jeff Foust               declare    22 1573821 1.397872e-05
## 9668    Jeff Foust           destruction    22 1573821 1.397872e-05
## 9669    Jeff Foust           devastating    22 1573821 1.397872e-05
## 9670    Jeff Foust            diminished    22 1573821 1.397872e-05
## 9671    Jeff Foust            directions    22 1573821 1.397872e-05
## 9672    Jeff Foust        disappointment    22 1573821 1.397872e-05
## 9673    Jeff Foust                  dmsp    22 1573821 1.397872e-05
## 9674    Jeff Foust                   doe    22 1573821 1.397872e-05
## 9675    Jeff Foust                 donna    22 1573821 1.397872e-05
## 9676    Jeff Foust                 doron    22 1573821 1.397872e-05
## 9677    Jeff Foust                 drops    22 1573821 1.397872e-05
## 9678    Jeff Foust                 drove    22 1573821 1.397872e-05
## 9679    Jeff Foust                  dunn    22 1573821 1.397872e-05
## 9680    Jeff Foust                  duty    22 1573821 1.397872e-05
## 9681    Jeff Foust                    e2    22 1573821 1.397872e-05
## 9682    Jeff Foust                  eelv    22 1573821 1.397872e-05
## 9683    Jeff Foust                  elsa    22 1573821 1.397872e-05
## 9684    Jeff Foust              embedded    22 1573821 1.397872e-05
## 9685    Jeff Foust             enhancing    22 1573821 1.397872e-05
## 9686    Jeff Foust           equivalents    22 1573821 1.397872e-05
## 9687    Jeff Foust                estate    22 1573821 1.397872e-05
## 9688    Jeff Foust             exchanges    22 1573821 1.397872e-05
## 9689    Jeff Foust                 exits    22 1573821 1.397872e-05
## 9690    Jeff Foust            explosions    22 1573821 1.397872e-05
## 9691    Jeff Foust               farther    22 1573821 1.397872e-05
## 9692    Jeff Foust               fastest    22 1573821 1.397872e-05
## 9693    Jeff Foust                 fatal    22 1573821 1.397872e-05
## 9694    Jeff Foust                folded    22 1573821 1.397872e-05
## 9695    Jeff Foust               foresee    22 1573821 1.397872e-05
## 9696    Jeff Foust                 gao’s    22 1573821 1.397872e-05
## 9697    Jeff Foust              gathered    22 1573821 1.397872e-05
## 9698    Jeff Foust                 grade    22 1573821 1.397872e-05
## 9699    Jeff Foust           guadalajara    22 1573821 1.397872e-05
## 9700    Jeff Foust                hammer    22 1573821 1.397872e-05
## 9701    Jeff Foust                hidden    22 1573821 1.397872e-05
## 9702    Jeff Foust                 hotel    22 1573821 1.397872e-05
## 9703    Jeff Foust           hypersonics    22 1573821 1.397872e-05
## 9704    Jeff Foust                impose    22 1573821 1.397872e-05
## 9705    Jeff Foust         independently    22 1573821 1.397872e-05
## 9706    Jeff Foust              inherent    22 1573821 1.397872e-05
## 9707    Jeff Foust             intensity    22 1573821 1.397872e-05
## 9708    Jeff Foust         intentionally    22 1573821 1.397872e-05
## 9709    Jeff Foust            invitation    22 1573821 1.397872e-05
## 9710    Jeff Foust                  iron    22 1573821 1.397872e-05
## 9711    Jeff Foust                 julie    22 1573821 1.397872e-05
## 9712    Jeff Foust               justify    22 1573821 1.397872e-05
## 9713    Jeff Foust                  kent    22 1573821 1.397872e-05
## 9714    Jeff Foust                korean    22 1573821 1.397872e-05
## 9715    Jeff Foust                larson    22 1573821 1.397872e-05
## 9716    Jeff Foust                leosat    22 1573821 1.397872e-05
## 9717    Jeff Foust               letting    22 1573821 1.397872e-05
## 9718    Jeff Foust               likened    22 1573821 1.397872e-05
## 9719    Jeff Foust                 lined    22 1573821 1.397872e-05
## 9720    Jeff Foust              linkedin    22 1573821 1.397872e-05
## 9721    Jeff Foust                locate    22 1573821 1.397872e-05
## 9722    Jeff Foust            lockheed’s    22 1573821 1.397872e-05
## 9723    Jeff Foust              matthias    22 1573821 1.397872e-05
## 9724    Jeff Foust                   mhi    22 1573821 1.397872e-05
## 9725    Jeff Foust       microsatellites    22 1573821 1.397872e-05
## 9726    Jeff Foust               mindset    22 1573821 1.397872e-05
## 9727    Jeff Foust             mitigated    22 1573821 1.397872e-05
## 9728    Jeff Foust            mothership    22 1573821 1.397872e-05
## 9729    Jeff Foust             multiyear    22 1573821 1.397872e-05
## 9730    Jeff Foust                norway    22 1573821 1.397872e-05
## 9731    Jeff Foust               obama’s    22 1573821 1.397872e-05
## 9732    Jeff Foust          organisation    22 1573821 1.397872e-05
## 9733    Jeff Foust                   ors    22 1573821 1.397872e-05
## 9734    Jeff Foust              outdated    22 1573821 1.397872e-05
## 9735    Jeff Foust            overlooked    22 1573821 1.397872e-05
## 9736    Jeff Foust                 oxide    22 1573821 1.397872e-05
## 9737    Jeff Foust           participant    22 1573821 1.397872e-05
## 9738    Jeff Foust                  pete    22 1573821 1.397872e-05
## 9739    Jeff Foust              promises    22 1573821 1.397872e-05
## 9740    Jeff Foust             promotion    22 1573821 1.397872e-05
## 9741    Jeff Foust           realization    22 1573821 1.397872e-05
## 9742    Jeff Foust               rebound    22 1573821 1.397872e-05
## 9743    Jeff Foust           redemptions    22 1573821 1.397872e-05
## 9744    Jeff Foust            reflective    22 1573821 1.397872e-05
## 9745    Jeff Foust              replaces    22 1573821 1.397872e-05
## 9746    Jeff Foust           resignation    22 1573821 1.397872e-05
## 9747    Jeff Foust             resolving    22 1573821 1.397872e-05
## 9748    Jeff Foust            revisiting    22 1573821 1.397872e-05
## 9749    Jeff Foust                 rival    22 1573821 1.397872e-05
## 9750    Jeff Foust              roadster    22 1573821 1.397872e-05
## 9751    Jeff Foust              rosalind    22 1573821 1.397872e-05
## 9752    Jeff Foust                sandra    22 1573821 1.397872e-05
## 9753    Jeff Foust                 shank    22 1573821 1.397872e-05
## 9754    Jeff Foust             shielding    22 1573821 1.397872e-05
## 9755    Jeff Foust            shkaplerov    22 1573821 1.397872e-05
## 9756    Jeff Foust               siebold    22 1573821 1.397872e-05
## 9757    Jeff Foust            spaceworks    22 1573821 1.397872e-05
## 9758    Jeff Foust                spares    22 1573821 1.397872e-05
## 9759    Jeff Foust               spectra    22 1573821 1.397872e-05
## 9760    Jeff Foust          spectroscopy    22 1573821 1.397872e-05
## 9761    Jeff Foust                 ssl’s    22 1573821 1.397872e-05
## 9762    Jeff Foust                stakes    22 1573821 1.397872e-05
## 9763    Jeff Foust              stressed    22 1573821 1.397872e-05
## 9764    Jeff Foust               sunrise    22 1573821 1.397872e-05
## 9765    Jeff Foust                 sworn    22 1573821 1.397872e-05
## 9766    Jeff Foust             synergies    22 1573821 1.397872e-05
## 9767    Jeff Foust                taiwan    22 1573821 1.397872e-05
## 9768    Jeff Foust             territory    22 1573821 1.397872e-05
## 9769    Jeff Foust                 toxic    22 1573821 1.397872e-05
## 9770    Jeff Foust                tracks    22 1573821 1.397872e-05
## 9771    Jeff Foust                  trek    22 1573821 1.397872e-05
## 9772    Jeff Foust                 trial    22 1573821 1.397872e-05
## 9773    Jeff Foust                 usage    22 1573821 1.397872e-05
## 9774    Jeff Foust                 varda    22 1573821 1.397872e-05
## 9775    Jeff Foust                  visa    22 1573821 1.397872e-05
## 9776    Jeff Foust             visionary    22 1573821 1.397872e-05
## 9777    Jeff Foust               visions    22 1573821 1.397872e-05
## 9778    Jeff Foust               visitor    22 1573821 1.397872e-05
## 9779    Jeff Foust                wagner    22 1573821 1.397872e-05
## 9780    Jeff Foust               wealthy    22 1573821 1.397872e-05
## 9781    Jeff Foust                  xemu    22 1573821 1.397872e-05
## 9782  Sandra Erwin                  30th    22  716353 3.071112e-05
## 9783  Sandra Erwin              accepted    22  716353 3.071112e-05
## 9784  Sandra Erwin            accounting    22  716353 3.071112e-05
## 9785  Sandra Erwin            accurately    22  716353 3.071112e-05
## 9786  Sandra Erwin            adequately    22  716353 3.071112e-05
## 9787  Sandra Erwin           adjustments    22  716353 3.071112e-05
## 9788  Sandra Erwin          advancements    22  716353 3.071112e-05
## 9789  Sandra Erwin             ambitions    22  716353 3.071112e-05
## 9790  Sandra Erwin             anomalies    22  716353 3.071112e-05
## 9791  Sandra Erwin                 arena    22  716353 3.071112e-05
## 9792  Sandra Erwin               batches    22  716353 3.071112e-05
## 9793  Sandra Erwin                  beta    22  716353 3.071112e-05
## 9794  Sandra Erwin                bodies    22  716353 3.071112e-05
## 9795  Sandra Erwin               braxton    22  716353 3.071112e-05
## 9796  Sandra Erwin              breaking    22  716353 3.071112e-05
## 9797  Sandra Erwin                 broke    22  716353 3.071112e-05
## 9798  Sandra Erwin                butler    22  716353 3.071112e-05
## 9799  Sandra Erwin         collaborative    22  716353 3.071112e-05
## 9800  Sandra Erwin             completes    22  716353 3.071112e-05
## 9801  Sandra Erwin           comptroller    22  716353 3.071112e-05
## 9802  Sandra Erwin          considerable    22  716353 3.071112e-05
## 9803  Sandra Erwin               covered    22  716353 3.071112e-05
## 9804  Sandra Erwin                critic    22  716353 3.071112e-05
## 9805  Sandra Erwin               crowded    22  716353 3.071112e-05
## 9806  Sandra Erwin               derived    22  716353 3.071112e-05
## 9807  Sandra Erwin                detail    22  716353 3.071112e-05
## 9808  Sandra Erwin                  disa    22  716353 3.071112e-05
## 9809  Sandra Erwin         disagreements    22  716353 3.071112e-05
## 9810  Sandra Erwin             discovery    22  716353 3.071112e-05
## 9811  Sandra Erwin              downlink    22  716353 3.071112e-05
## 9812  Sandra Erwin              downturn    22  716353 3.071112e-05
## 9813  Sandra Erwin                  drag    22  716353 3.071112e-05
## 9814  Sandra Erwin                 ellis    22  716353 3.071112e-05
## 9815  Sandra Erwin             encrypted    22  716353 3.071112e-05
## 9816  Sandra Erwin              engaging    22  716353 3.071112e-05
## 9817  Sandra Erwin                   eps    22  716353 3.071112e-05
## 9818  Sandra Erwin                eyeing    22  716353 3.071112e-05
## 9819  Sandra Erwin                 fab’s    22  716353 3.071112e-05
## 9820  Sandra Erwin              fighters    22  716353 3.071112e-05
## 9821  Sandra Erwin                forced    22  716353 3.071112e-05
## 9822  Sandra Erwin                  fort    22  716353 3.071112e-05
## 9823  Sandra Erwin              fraction    22  716353 3.071112e-05
## 9824  Sandra Erwin            frustrated    22  716353 3.071112e-05
## 9825  Sandra Erwin           functioning    22  716353 3.071112e-05
## 9826  Sandra Erwin               garrant    22  716353 3.071112e-05
## 9827  Sandra Erwin               gerhart    22  716353 3.071112e-05
## 9828  Sandra Erwin                 gonna    22  716353 3.071112e-05
## 9829  Sandra Erwin             headlines    22  716353 3.071112e-05
## 9830  Sandra Erwin               hurdles    22  716353 3.071112e-05
## 9831  Sandra Erwin                 icbms    22  716353 3.071112e-05
## 9832  Sandra Erwin            incredible    22  716353 3.071112e-05
## 9833  Sandra Erwin            influenced    22  716353 3.071112e-05
## 9834  Sandra Erwin         irresponsible    22  716353 3.071112e-05
## 9835  Sandra Erwin                 it’ll    22  716353 3.071112e-05
## 9836  Sandra Erwin               jacques    22  716353 3.071112e-05
## 9837  Sandra Erwin         justification    22  716353 3.071112e-05
## 9838  Sandra Erwin              licensed    22  716353 3.071112e-05
## 9839  Sandra Erwin              linquest    22  716353 3.071112e-05
## 9840  Sandra Erwin                 lists    22  716353 3.071112e-05
## 9841  Sandra Erwin                  lock    22  716353 3.071112e-05
## 9842  Sandra Erwin              maturity    22  716353 3.071112e-05
## 9843  Sandra Erwin               mergers    22  716353 3.071112e-05
## 9844  Sandra Erwin                method    22  716353 3.071112e-05
## 9845  Sandra Erwin            militaries    22  716353 3.071112e-05
## 9846  Sandra Erwin        militarization    22  716353 3.071112e-05
## 9847  Sandra Erwin              mountain    22  716353 3.071112e-05
## 9848  Sandra Erwin              movement    22  716353 3.071112e-05
## 9849  Sandra Erwin                 names    22  716353 3.071112e-05
## 9850  Sandra Erwin                  node    22  716353 3.071112e-05
## 9851  Sandra Erwin            northrop’s    22  716353 3.071112e-05
## 9852  Sandra Erwin                  nsdc    22  716353 3.071112e-05
## 9853  Sandra Erwin            objections    22  716353 3.071112e-05
## 9854  Sandra Erwin             offerings    22  716353 3.071112e-05
## 9855  Sandra Erwin                offset    22  716353 3.071112e-05
## 9856  Sandra Erwin               opposes    22  716353 3.071112e-05
## 9857  Sandra Erwin               orlando    22  716353 3.071112e-05
## 9858  Sandra Erwin              partisan    22  716353 3.071112e-05
## 9859  Sandra Erwin                plenty    22  716353 3.071112e-05
## 9860  Sandra Erwin               podcast    22  716353 3.071112e-05
## 9861  Sandra Erwin               polaris    22  716353 3.071112e-05
## 9862  Sandra Erwin                 pound    22  716353 3.071112e-05
## 9863  Sandra Erwin              predasar    22  716353 3.071112e-05
## 9864  Sandra Erwin            prosperity    22  716353 3.071112e-05
## 9865  Sandra Erwin                  ptes    22  716353 3.071112e-05
## 9866  Sandra Erwin             purchases    22  716353 3.071112e-05
## 9867  Sandra Erwin           recognizing    22  716353 3.071112e-05
## 9868  Sandra Erwin          recommending    22  716353 3.071112e-05
## 9869  Sandra Erwin              retiring    22  716353 3.071112e-05
## 9870  Sandra Erwin           reusability    22  716353 3.071112e-05
## 9871  Sandra Erwin                   rob    22  716353 3.071112e-05
## 9872  Sandra Erwin          rocketdyne’s    22  716353 3.071112e-05
## 9873  Sandra Erwin                ruling    22  716353 3.071112e-05
## 9874  Sandra Erwin                  rush    22  716353 3.071112e-05
## 9875  Sandra Erwin                   sac    22  716353 3.071112e-05
## 9876  Sandra Erwin               settled    22  716353 3.071112e-05
## 9877  Sandra Erwin              simplify    22  716353 3.071112e-05
## 9878  Sandra Erwin                slated    22  716353 3.071112e-05
## 9879  Sandra Erwin           specialists    22  716353 3.071112e-05
## 9880  Sandra Erwin               staffed    22  716353 3.071112e-05
## 9881  Sandra Erwin                 stake    22  716353 3.071112e-05
## 9882  Sandra Erwin                 strap    22  716353 3.071112e-05
## 9883  Sandra Erwin              struggle    22  716353 3.071112e-05
## 9884  Sandra Erwin            supportive    22  716353 3.071112e-05
## 9885  Sandra Erwin              supposed    22  716353 3.071112e-05
## 9886  Sandra Erwin             terminate    22  716353 3.071112e-05
## 9887  Sandra Erwin             testified    22  716353 3.071112e-05
## 9888  Sandra Erwin                    uk    22  716353 3.071112e-05
## 9889  Sandra Erwin               unusual    22  716353 3.071112e-05
## 9890  Sandra Erwin             upgrading    22  716353 3.071112e-05
## 9891  Sandra Erwin             vehicle’s    22  716353 3.071112e-05
## 9892  Sandra Erwin               vessels    22  716353 3.071112e-05
## 9893  Sandra Erwin                wright    22  716353 3.071112e-05
## 9894    Jeff Foust                    1e    21 1573821 1.334332e-05
## 9895    Jeff Foust                  31st    21 1573821 1.334332e-05
## 9896    Jeff Foust                    6a    21 1573821 1.334332e-05
## 9897    Jeff Foust          accommodated    21 1573821 1.334332e-05
## 9898    Jeff Foust           accompanied    21 1573821 1.334332e-05
## 9899    Jeff Foust        accomplishment    21 1573821 1.334332e-05
## 9900    Jeff Foust           accuweather    21 1573821 1.334332e-05
## 9901    Jeff Foust             adventure    21 1573821 1.334332e-05
## 9902    Jeff Foust            affiliated    21 1573821 1.334332e-05
## 9903    Jeff Foust                  afrl    21 1573821 1.334332e-05
## 9904    Jeff Foust                   agi    21 1573821 1.334332e-05
## 9905    Jeff Foust               amateur    21 1573821 1.334332e-05
## 9906    Jeff Foust              americas    21 1573821 1.334332e-05
## 9907    Jeff Foust                 angel    21 1573821 1.334332e-05
## 9908    Jeff Foust            annexation    21 1573821 1.334332e-05
## 9909    Jeff Foust                    ar    21 1573821 1.334332e-05
## 9910    Jeff Foust              arguably    21 1573821 1.334332e-05
## 9911    Jeff Foust               artists    21 1573821 1.334332e-05
## 9912    Jeff Foust             augmented    21 1573821 1.334332e-05
## 9913    Jeff Foust              autonomy    21 1573821 1.334332e-05
## 9914    Jeff Foust           bepicolombo    21 1573821 1.334332e-05
## 9915    Jeff Foust                   bet    21 1573821 1.334332e-05
## 9916    Jeff Foust              blackout    21 1573821 1.334332e-05
## 9917    Jeff Foust               bolster    21 1573821 1.334332e-05
## 9918    Jeff Foust         breakthroughs    21 1573821 1.334332e-05
## 9919    Jeff Foust                 brost    21 1573821 1.334332e-05
## 9920    Jeff Foust               carmack    21 1573821 1.334332e-05
## 9921    Jeff Foust              catalyst    21 1573821 1.334332e-05
## 9922    Jeff Foust            cautiously    21 1573821 1.334332e-05
## 9923    Jeff Foust                   cdr    21 1573821 1.334332e-05
## 9924    Jeff Foust              champion    21 1573821 1.334332e-05
## 9925    Jeff Foust               changer    21 1573821 1.334332e-05
## 9926    Jeff Foust             christina    21 1573821 1.334332e-05
## 9927    Jeff Foust               citizen    21 1573821 1.334332e-05
## 9928    Jeff Foust                 clyde    21 1573821 1.334332e-05
## 9929    Jeff Foust              combines    21 1573821 1.334332e-05
## 9930    Jeff Foust            compressed    21 1573821 1.334332e-05
## 9931    Jeff Foust             consensys    21 1573821 1.334332e-05
## 9932    Jeff Foust               consist    21 1573821 1.334332e-05
## 9933    Jeff Foust           consolidate    21 1573821 1.334332e-05
## 9934    Jeff Foust         consolidating    21 1573821 1.334332e-05
## 9935    Jeff Foust                critic    21 1573821 1.334332e-05
## 9936    Jeff Foust              crossing    21 1573821 1.334332e-05
## 9937    Jeff Foust                 curie    21 1573821 1.334332e-05
## 9938    Jeff Foust                custom    21 1573821 1.334332e-05
## 9939    Jeff Foust                 cyber    21 1573821 1.334332e-05
## 9940    Jeff Foust           decelerator    21 1573821 1.334332e-05
## 9941    Jeff Foust               defazio    21 1573821 1.334332e-05
## 9942    Jeff Foust              designer    21 1573821 1.334332e-05
## 9943    Jeff Foust            destroying    21 1573821 1.334332e-05
## 9944    Jeff Foust               dispose    21 1573821 1.334332e-05
## 9945    Jeff Foust          domestically    21 1573821 1.334332e-05
## 9946    Jeff Foust               drafted    21 1573821 1.334332e-05
## 9947    Jeff Foust                  draw    21 1573821 1.334332e-05
## 9948    Jeff Foust             durations    21 1573821 1.334332e-05
## 9949    Jeff Foust            employment    21 1573821 1.334332e-05
## 9950    Jeff Foust               erosion    21 1573821 1.334332e-05
## 9951    Jeff Foust            excellence    21 1573821 1.334332e-05
## 9952    Jeff Foust             exhausted    21 1573821 1.334332e-05
## 9953    Jeff Foust            explaining    21 1573821 1.334332e-05
## 9954    Jeff Foust                female    21 1573821 1.334332e-05
## 9955    Jeff Foust               figured    21 1573821 1.334332e-05
## 9956    Jeff Foust              financed    21 1573821 1.334332e-05
## 9957    Jeff Foust                 fires    21 1573821 1.334332e-05
## 9958    Jeff Foust               fischer    21 1573821 1.334332e-05
## 9959    Jeff Foust               fission    21 1573821 1.334332e-05
## 9960    Jeff Foust              football    21 1573821 1.334332e-05
## 9961    Jeff Foust              formosat    21 1573821 1.334332e-05
## 9962    Jeff Foust             fortunate    21 1573821 1.334332e-05
## 9963    Jeff Foust               freeing    21 1573821 1.334332e-05
## 9964    Jeff Foust                   gac    21 1573821 1.334332e-05
## 9965    Jeff Foust                ghgsat    21 1573821 1.334332e-05
## 9966    Jeff Foust                  gogo    21 1573821 1.334332e-05
## 9967    Jeff Foust                   guy    21 1573821 1.334332e-05
## 9968    Jeff Foust                 hints    21 1573821 1.334332e-05
## 9969    Jeff Foust                houses    21 1573821 1.334332e-05
## 9970    Jeff Foust                 hyten    21 1573821 1.334332e-05
## 9971    Jeff Foust                   iau    21 1573821 1.334332e-05
## 9972    Jeff Foust             incidents    21 1573821 1.334332e-05
## 9973    Jeff Foust              initiate    21 1573821 1.334332e-05
## 9974    Jeff Foust              innovate    21 1573821 1.334332e-05
## 9975    Jeff Foust             inspiring    21 1573821 1.334332e-05
## 9976    Jeff Foust            integrator    21 1573821 1.334332e-05
## 9977    Jeff Foust          intermediate    21 1573821 1.334332e-05
## 9978    Jeff Foust                iodine    21 1573821 1.334332e-05
## 9979    Jeff Foust              ispace’s    21 1573821 1.334332e-05
## 9980    Jeff Foust          jacksonville    21 1573821 1.334332e-05
## 9981    Jeff Foust               jamming    21 1573821 1.334332e-05
## 9982    Jeff Foust                   jon    21 1573821 1.334332e-05
## 9983    Jeff Foust                  jude    21 1573821 1.334332e-05
## 9984    Jeff Foust               kinetic    21 1573821 1.334332e-05
## 9985    Jeff Foust               laporte    21 1573821 1.334332e-05
## 9986    Jeff Foust                 lasts    21 1573821 1.334332e-05
## 9987    Jeff Foust                   leg    21 1573821 1.334332e-05
## 9988    Jeff Foust             leostella    21 1573821 1.334332e-05
## 9989    Jeff Foust             liquidity    21 1573821 1.334332e-05
## 9990    Jeff Foust               logical    21 1573821 1.334332e-05
## 9991    Jeff Foust                  loon    21 1573821 1.334332e-05
## 9992    Jeff Foust             lucrative    21 1573821 1.334332e-05
## 9993    Jeff Foust                 lynne    21 1573821 1.334332e-05
## 9994    Jeff Foust             manifests    21 1573821 1.334332e-05
## 9995    Jeff Foust           meteorology    21 1573821 1.334332e-05
## 9996    Jeff Foust              michelle    21 1573821 1.334332e-05
## 9997    Jeff Foust              midnight    21 1573821 1.334332e-05
## 9998    Jeff Foust                    mu    21 1573821 1.334332e-05
## 9999    Jeff Foust          nanoavionics    21 1573821 1.334332e-05
## 10000   Jeff Foust        nanosatellites    21 1573821 1.334332e-05
## 10001   Jeff Foust             newspaper    21 1573821 1.334332e-05
## 10002   Jeff Foust             nighttime    21 1573821 1.334332e-05
## 10003   Jeff Foust               noguchi    21 1573821 1.334332e-05
## 10004   Jeff Foust              outgoing    21 1573821 1.334332e-05
## 10005   Jeff Foust            overcoming    21 1573821 1.334332e-05
## 10006   Jeff Foust              overhead    21 1573821 1.334332e-05
## 10007   Jeff Foust                 ozmen    21 1573821 1.334332e-05
## 10008   Jeff Foust               o’keefe    21 1573821 1.334332e-05
## 10009   Jeff Foust              people’s    21 1573821 1.334332e-05
## 10010   Jeff Foust              politico    21 1573821 1.334332e-05
## 10011   Jeff Foust          prescriptive    21 1573821 1.334332e-05
## 10012   Jeff Foust              probable    21 1573821 1.334332e-05
## 10013   Jeff Foust           proceedings    21 1573821 1.334332e-05
## 10014   Jeff Foust              radiator    21 1573821 1.334332e-05
## 10015   Jeff Foust                 ramps    21 1573821 1.334332e-05
## 10016   Jeff Foust         reestablished    21 1573821 1.334332e-05
## 10017   Jeff Foust               refined    21 1573821 1.334332e-05
## 10018   Jeff Foust             refurbish    21 1573821 1.334332e-05
## 10019   Jeff Foust            repeatedly    21 1573821 1.334332e-05
## 10020   Jeff Foust              republic    21 1573821 1.334332e-05
## 10021   Jeff Foust                roster    21 1573821 1.334332e-05
## 10022   Jeff Foust                   rtg    21 1573821 1.334332e-05
## 10023   Jeff Foust                safran    21 1573821 1.334332e-05
## 10024   Jeff Foust                  sand    21 1573821 1.334332e-05
## 10025   Jeff Foust              seamless    21 1573821 1.334332e-05
## 10026   Jeff Foust                  seas    21 1573821 1.334332e-05
## 10027   Jeff Foust                 sends    21 1573821 1.334332e-05
## 10028   Jeff Foust             separates    21 1573821 1.334332e-05
## 10029   Jeff Foust                shaped    21 1573821 1.334332e-05
## 10030   Jeff Foust               shatner    21 1573821 1.334332e-05
## 10031   Jeff Foust                 shelf    21 1573821 1.334332e-05
## 10032   Jeff Foust              sinclair    21 1573821 1.334332e-05
## 10033   Jeff Foust                 slide    21 1573821 1.334332e-05
## 10034   Jeff Foust             solicited    21 1573821 1.334332e-05
## 10035   Jeff Foust              speeches    21 1573821 1.334332e-05
## 10036   Jeff Foust               stacked    21 1573821 1.334332e-05
## 10037   Jeff Foust              stacking    21 1573821 1.334332e-05
## 10038   Jeff Foust                strain    21 1573821 1.334332e-05
## 10039   Jeff Foust        stratolaunch’s    21 1573821 1.334332e-05
## 10040   Jeff Foust               streaks    21 1573821 1.334332e-05
## 10041   Jeff Foust            submitting    21 1573821 1.334332e-05
## 10042   Jeff Foust                 sweet    21 1573821 1.334332e-05
## 10043   Jeff Foust           switzerland    21 1573821 1.334332e-05
## 10044   Jeff Foust                tackle    21 1573821 1.334332e-05
## 10045   Jeff Foust                 tells    21 1573821 1.334332e-05
## 10046   Jeff Foust                  thin    21 1573821 1.334332e-05
## 10047   Jeff Foust              titanium    21 1573821 1.334332e-05
## 10048   Jeff Foust                toilet    21 1573821 1.334332e-05
## 10049   Jeff Foust             tolerance    21 1573821 1.334332e-05
## 10050   Jeff Foust              trackers    21 1573821 1.334332e-05
## 10051   Jeff Foust          transmission    21 1573821 1.334332e-05
## 10052   Jeff Foust              uniquely    21 1573821 1.334332e-05
## 10053   Jeff Foust                   usa    21 1573821 1.334332e-05
## 10054   Jeff Foust                  vary    21 1573821 1.334332e-05
## 10055   Jeff Foust                view’s    21 1573821 1.334332e-05
## 10056   Jeff Foust              virgin’s    21 1573821 1.334332e-05
## 10057   Jeff Foust                visual    21 1573821 1.334332e-05
## 10058   Jeff Foust               vivisat    21 1573821 1.334332e-05
## 10059   Jeff Foust            vulnerable    21 1573821 1.334332e-05
## 10060   Jeff Foust                walter    21 1573821 1.334332e-05
## 10061   Jeff Foust                warden    21 1573821 1.334332e-05
## 10062   Jeff Foust                wiring    21 1573821 1.334332e-05
## 10063   Jeff Foust              wondered    21 1573821 1.334332e-05
## 10064   Jeff Foust             workhorse    21 1573821 1.334332e-05
## 10065   Jeff Foust                writer    21 1573821 1.334332e-05
## 10066 Sandra Erwin                  14th    21  716353 2.931516e-05
## 10067 Sandra Erwin           adversarial    21  716353 2.931516e-05
## 10068 Sandra Erwin            advocating    21  716353 2.931516e-05
## 10069 Sandra Erwin              airplane    21  716353 2.931516e-05
## 10070 Sandra Erwin              airspace    21  716353 2.931516e-05
## 10071 Sandra Erwin               amazing    21  716353 2.931516e-05
## 10072 Sandra Erwin              analyzes    21  716353 2.931516e-05
## 10073 Sandra Erwin              answered    21  716353 2.931516e-05
## 10074 Sandra Erwin          anticipation    21  716353 2.931516e-05
## 10075 Sandra Erwin              appetite    21  716353 2.931516e-05
## 10076 Sandra Erwin              applying    21  716353 2.931516e-05
## 10077 Sandra Erwin               arizona    21  716353 2.931516e-05
## 10078 Sandra Erwin               arrived    21  716353 2.931516e-05
## 10079 Sandra Erwin                assign    21  716353 2.931516e-05
## 10080 Sandra Erwin                assist    21  716353 2.931516e-05
## 10081 Sandra Erwin              astranis    21  716353 2.931516e-05
## 10082 Sandra Erwin                attend    21  716353 2.931516e-05
## 10083 Sandra Erwin              automate    21  716353 2.931516e-05
## 10084 Sandra Erwin            automation    21  716353 2.931516e-05
## 10085 Sandra Erwin              avascent    21  716353 2.931516e-05
## 10086 Sandra Erwin                 becht    21  716353 2.931516e-05
## 10087 Sandra Erwin                 belle    21  716353 2.931516e-05
## 10088 Sandra Erwin               bolster    21  716353 2.931516e-05
## 10089 Sandra Erwin                booked    21  716353 2.931516e-05
## 10090 Sandra Erwin                  boom    21  716353 2.931516e-05
## 10091 Sandra Erwin                brooks    21  716353 2.931516e-05
## 10092 Sandra Erwin                browne    21  716353 2.931516e-05
## 10093 Sandra Erwin                callan    21  716353 2.931516e-05
## 10094 Sandra Erwin                 catch    21  716353 2.931516e-05
## 10095 Sandra Erwin              combines    21  716353 2.931516e-05
## 10096 Sandra Erwin            complained    21  716353 2.931516e-05
## 10097 Sandra Erwin            completing    21  716353 2.931516e-05
## 10098 Sandra Erwin              contends    21  716353 2.931516e-05
## 10099 Sandra Erwin                  cool    21  716353 2.931516e-05
## 10100 Sandra Erwin         corporation’s    21  716353 2.931516e-05
## 10101 Sandra Erwin                 cowen    21  716353 2.931516e-05
## 10102 Sandra Erwin                 death    21  716353 2.931516e-05
## 10103 Sandra Erwin               decatur    21  716353 2.931516e-05
## 10104 Sandra Erwin            democratic    21  716353 2.931516e-05
## 10105 Sandra Erwin            discussing    21  716353 2.931516e-05
## 10106 Sandra Erwin               douglas    21  716353 2.931516e-05
## 10107 Sandra Erwin                dragon    21  716353 2.931516e-05
## 10108 Sandra Erwin         effectiveness    21  716353 2.931516e-05
## 10109 Sandra Erwin                emerge    21  716353 2.931516e-05
## 10110 Sandra Erwin              employed    21  716353 2.931516e-05
## 10111 Sandra Erwin               existed    21  716353 2.931516e-05
## 10112 Sandra Erwin           explanation    21  716353 2.931516e-05
## 10113 Sandra Erwin               extract    21  716353 2.931516e-05
## 10114 Sandra Erwin                 fears    21  716353 2.931516e-05
## 10115 Sandra Erwin               feature    21  716353 2.931516e-05
## 10116 Sandra Erwin              focusing    21  716353 2.931516e-05
## 10117 Sandra Erwin             forefront    21  716353 2.931516e-05
## 10118 Sandra Erwin          foundational    21  716353 2.931516e-05
## 10119 Sandra Erwin            fragmented    21  716353 2.931516e-05
## 10120 Sandra Erwin                 games    21  716353 2.931516e-05
## 10121 Sandra Erwin              graduate    21  716353 2.931516e-05
## 10122 Sandra Erwin               grazier    21  716353 2.931516e-05
## 10123 Sandra Erwin               hackers    21  716353 2.931516e-05
## 10124 Sandra Erwin                 heads    21  716353 2.931516e-05
## 10125 Sandra Erwin           importantly    21  716353 2.931516e-05
## 10126 Sandra Erwin             impressed    21  716353 2.931516e-05
## 10127 Sandra Erwin            integrates    21  716353 2.931516e-05
## 10128 Sandra Erwin                 italy    21  716353 2.931516e-05
## 10129 Sandra Erwin                 kirby    21  716353 2.931516e-05
## 10130 Sandra Erwin               liquori    21  716353 2.931516e-05
## 10131 Sandra Erwin                    lm    21  716353 2.931516e-05
## 10132 Sandra Erwin               marines    21  716353 2.931516e-05
## 10133 Sandra Erwin               missing    21  716353 2.931516e-05
## 10134 Sandra Erwin             narrative    21  716353 2.931516e-05
## 10135 Sandra Erwin              nebraska    21  716353 2.931516e-05
## 10136 Sandra Erwin              office’s    21  716353 2.931516e-05
## 10137 Sandra Erwin                   ors    21  716353 2.931516e-05
## 10138 Sandra Erwin          overwhelming    21  716353 2.931516e-05
## 10139 Sandra Erwin              palantir    21  716353 2.931516e-05
## 10140 Sandra Erwin                played    21  716353 2.931516e-05
## 10141 Sandra Erwin              politics    21  716353 2.931516e-05
## 10142 Sandra Erwin                  rare    21  716353 2.931516e-05
## 10143 Sandra Erwin             raymond’s    21  716353 2.931516e-05
## 10144 Sandra Erwin                refine    21  716353 2.931516e-05
## 10145 Sandra Erwin             regularly    21  716353 2.931516e-05
## 10146 Sandra Erwin            repeatedly    21  716353 2.931516e-05
## 10147 Sandra Erwin             resulting    21  716353 2.931516e-05
## 10148 Sandra Erwin              resupply    21  716353 2.931516e-05
## 10149 Sandra Erwin              revenues    21  716353 2.931516e-05
## 10150 Sandra Erwin                 rl10c    21  716353 2.931516e-05
## 10151 Sandra Erwin              rominger    21  716353 2.931516e-05
## 10152 Sandra Erwin                  rood    21  716353 2.931516e-05
## 10153 Sandra Erwin                 royal    21  716353 2.931516e-05
## 10154 Sandra Erwin                 saber    21  716353 2.931516e-05
## 10155 Sandra Erwin                 sejba    21  716353 2.931516e-05
## 10156 Sandra Erwin               shaping    21  716353 2.931516e-05
## 10157 Sandra Erwin               shorten    21  716353 2.931516e-05
## 10158 Sandra Erwin               shortly    21  716353 2.931516e-05
## 10159 Sandra Erwin              simulate    21  716353 2.931516e-05
## 10160 Sandra Erwin                slowed    21  716353 2.931516e-05
## 10161 Sandra Erwin                solely    21  716353 2.931516e-05
## 10162 Sandra Erwin                soviet    21  716353 2.931516e-05
## 10163 Sandra Erwin            spacepower    21  716353 2.931516e-05
## 10164 Sandra Erwin           specializes    21  716353 2.931516e-05
## 10165 Sandra Erwin                spends    21  716353 2.931516e-05
## 10166 Sandra Erwin                stakes    21  716353 2.931516e-05
## 10167 Sandra Erwin                suited    21  716353 2.931516e-05
## 10168 Sandra Erwin                   tax    21  716353 2.931516e-05
## 10169 Sandra Erwin             telemetry    21  716353 2.931516e-05
## 10170 Sandra Erwin                 theme    21  716353 2.931516e-05
## 10171 Sandra Erwin              turnbull    21  716353 2.931516e-05
## 10172 Sandra Erwin                  utah    21  716353 2.931516e-05
## 10173 Sandra Erwin               visited    21  716353 2.931516e-05
## 10174 Sandra Erwin              williams    21  716353 2.931516e-05
## 10175 Sandra Erwin                  xgeo    21  716353 2.931516e-05
## 10176 Sandra Erwin                 zoiss    21  716353 2.931516e-05
## 10177   Jeff Foust                  2.1a    20 1573821 1.270793e-05
## 10178   Jeff Foust                  20th    20 1573821 1.270793e-05
## 10179   Jeff Foust            abandoning    20 1573821 1.270793e-05
## 10180   Jeff Foust             abundance    20 1573821 1.270793e-05
## 10181   Jeff Foust                accion    20 1573821 1.270793e-05
## 10182   Jeff Foust             accompany    20 1573821 1.270793e-05
## 10183   Jeff Foust              acoustic    20 1573821 1.270793e-05
## 10184   Jeff Foust             acoustics    20 1573821 1.270793e-05
## 10185   Jeff Foust              admitted    20 1573821 1.270793e-05
## 10186   Jeff Foust              adopting    20 1573821 1.270793e-05
## 10187   Jeff Foust                    ae    20 1573821 1.270793e-05
## 10188   Jeff Foust             aerojet’s    20 1573821 1.270793e-05
## 10189   Jeff Foust         affordability    20 1573821 1.270793e-05
## 10190   Jeff Foust                   aft    20 1573821 1.270793e-05
## 10191   Jeff Foust              agreeing    20 1573821 1.270793e-05
## 10192   Jeff Foust               airshow    20 1573821 1.270793e-05
## 10193   Jeff Foust               applies    20 1573821 1.270793e-05
## 10194   Jeff Foust           appointment    20 1573821 1.270793e-05
## 10195   Jeff Foust                arctic    20 1573821 1.270793e-05
## 10196   Jeff Foust             arlington    20 1573821 1.270793e-05
## 10197   Jeff Foust                assign    20 1573821 1.270793e-05
## 10198   Jeff Foust           assumptions    20 1573821 1.270793e-05
## 10199   Jeff Foust              astrolab    20 1573821 1.270793e-05
## 10200   Jeff Foust              attorney    20 1573821 1.270793e-05
## 10201   Jeff Foust                  aung    20 1573821 1.270793e-05
## 10202   Jeff Foust           australia’s    20 1573821 1.270793e-05
## 10203   Jeff Foust            automation    20 1573821 1.270793e-05
## 10204   Jeff Foust                  beth    20 1573821 1.270793e-05
## 10205   Jeff Foust              blocking    20 1573821 1.270793e-05
## 10206   Jeff Foust                  blum    20 1573821 1.270793e-05
## 10207   Jeff Foust                bolger    20 1573821 1.270793e-05
## 10208   Jeff Foust            boundaries    20 1573821 1.270793e-05
## 10209   Jeff Foust             breathing    20 1573821 1.270793e-05
## 10210   Jeff Foust                breeze    20 1573821 1.270793e-05
## 10211   Jeff Foust             brightest    20 1573821 1.270793e-05
## 10212   Jeff Foust             brightman    20 1573821 1.270793e-05
## 10213   Jeff Foust                bursts    20 1573821 1.270793e-05
## 10214   Jeff Foust             calculate    20 1573821 1.270793e-05
## 10215   Jeff Foust            calculated    20 1573821 1.270793e-05
## 10216   Jeff Foust                cernan    20 1573821 1.270793e-05
## 10217   Jeff Foust             chartered    20 1573821 1.270793e-05
## 10218   Jeff Foust                collar    20 1573821 1.270793e-05
## 10219   Jeff Foust               confers    20 1573821 1.270793e-05
## 10220   Jeff Foust          congratulate    20 1573821 1.270793e-05
## 10221   Jeff Foust              convened    20 1573821 1.270793e-05
## 10222   Jeff Foust                 copvs    20 1573821 1.270793e-05
## 10223   Jeff Foust              crashing    20 1573821 1.270793e-05
## 10224   Jeff Foust                  cube    20 1573821 1.270793e-05
## 10225   Jeff Foust                cygnss    20 1573821 1.270793e-05
## 10226   Jeff Foust                defend    20 1573821 1.270793e-05
## 10227   Jeff Foust              deployer    20 1573821 1.270793e-05
## 10228   Jeff Foust         disappointing    20 1573821 1.270793e-05
## 10229   Jeff Foust              disaster    20 1573821 1.270793e-05
## 10230   Jeff Foust           droegemeier    20 1573821 1.270793e-05
## 10231   Jeff Foust                  ease    20 1573821 1.270793e-05
## 10232   Jeff Foust             economies    20 1573821 1.270793e-05
## 10233   Jeff Foust                  epoc    20 1573821 1.270793e-05
## 10234   Jeff Foust              eumetsat    20 1573821 1.270793e-05
## 10235   Jeff Foust                  evas    20 1573821 1.270793e-05
## 10236   Jeff Foust               exceeds    20 1573821 1.270793e-05
## 10237   Jeff Foust               exhaust    20 1573821 1.270793e-05
## 10238   Jeff Foust              explicit    20 1573821 1.270793e-05
## 10239   Jeff Foust               fiction    20 1573821 1.270793e-05
## 10240   Jeff Foust               forming    20 1573821 1.270793e-05
## 10241   Jeff Foust                 forms    20 1573821 1.270793e-05
## 10242   Jeff Foust                fregat    20 1573821 1.270793e-05
## 10243   Jeff Foust           galacticsky    20 1573821 1.270793e-05
## 10244   Jeff Foust               gallery    20 1573821 1.270793e-05
## 10245   Jeff Foust                  gen2    20 1573821 1.270793e-05
## 10246   Jeff Foust             gigahertz    20 1573821 1.270793e-05
## 10247   Jeff Foust              gramling    20 1573821 1.270793e-05
## 10248   Jeff Foust                 guest    20 1573821 1.270793e-05
## 10249   Jeff Foust               hammond    20 1573821 1.270793e-05
## 10250   Jeff Foust          highlighting    20 1573821 1.270793e-05
## 10251   Jeff Foust                 hindu    20 1573821 1.270793e-05
## 10252   Jeff Foust            identifies    20 1573821 1.270793e-05
## 10253   Jeff Foust                  igor    20 1573821 1.270793e-05
## 10254   Jeff Foust          individually    20 1573821 1.270793e-05
## 10255   Jeff Foust             insight’s    20 1573821 1.270793e-05
## 10256   Jeff Foust             integrity    20 1573821 1.270793e-05
## 10257   Jeff Foust           interviewed    20 1573821 1.270793e-05
## 10258   Jeff Foust                  iran    20 1573821 1.270793e-05
## 10259   Jeff Foust         irresponsible    20 1573821 1.270793e-05
## 10260   Jeff Foust              isolated    20 1573821 1.270793e-05
## 10261   Jeff Foust                jeremy    20 1573821 1.270793e-05
## 10262   Jeff Foust                jordan    20 1573821 1.270793e-05
## 10263   Jeff Foust                 latch    20 1573821 1.270793e-05
## 10264   Jeff Foust             latitudes    20 1573821 1.270793e-05
## 10265   Jeff Foust             lifetimes    20 1573821 1.270793e-05
## 10266   Jeff Foust                  ligo    20 1573821 1.270793e-05
## 10267   Jeff Foust                lining    20 1573821 1.270793e-05
## 10268   Jeff Foust               linking    20 1573821 1.270793e-05
## 10269   Jeff Foust                   ltv    20 1573821 1.270793e-05
## 10270   Jeff Foust             matsumori    20 1573821 1.270793e-05
## 10271   Jeff Foust                 mauna    20 1573821 1.270793e-05
## 10272   Jeff Foust              medicine    20 1573821 1.270793e-05
## 10273   Jeff Foust              mentions    20 1573821 1.270793e-05
## 10274   Jeff Foust                   mir    20 1573821 1.270793e-05
## 10275   Jeff Foust                mitsui    20 1573821 1.270793e-05
## 10276   Jeff Foust              moderate    20 1573821 1.270793e-05
## 10277   Jeff Foust             moonspike    20 1573821 1.270793e-05
## 10278   Jeff Foust            motivation    20 1573821 1.270793e-05
## 10279   Jeff Foust                 naked    20 1573821 1.270793e-05
## 10280   Jeff Foust               nascent    20 1573821 1.270793e-05
## 10281   Jeff Foust               nervous    20 1573821 1.270793e-05
## 10282   Jeff Foust        neuenschwander    20 1573821 1.270793e-05
## 10283   Jeff Foust               neutral    20 1573821 1.270793e-05
## 10284   Jeff Foust               newquay    20 1573821 1.270793e-05
## 10285   Jeff Foust                 notam    20 1573821 1.270793e-05
## 10286   Jeff Foust              novitsky    20 1573821 1.270793e-05
## 10287   Jeff Foust             occurring    20 1573821 1.270793e-05
## 10288   Jeff Foust             outfitted    20 1573821 1.270793e-05
## 10289   Jeff Foust              overhaul    20 1573821 1.270793e-05
## 10290   Jeff Foust             parallels    20 1573821 1.270793e-05
## 10291   Jeff Foust                  pays    20 1573821 1.270793e-05
## 10292   Jeff Foust            persistent    20 1573821 1.270793e-05
## 10293   Jeff Foust              pictures    20 1573821 1.270793e-05
## 10294   Jeff Foust                pierce    20 1573821 1.270793e-05
## 10295   Jeff Foust               piloted    20 1573821 1.270793e-05
## 10296   Jeff Foust               printer    20 1573821 1.270793e-05
## 10297   Jeff Foust             programme    20 1573821 1.270793e-05
## 10298   Jeff Foust         proliferation    20 1573821 1.270793e-05
## 10299   Jeff Foust             prominent    20 1573821 1.270793e-05
## 10300   Jeff Foust                promus    20 1573821 1.270793e-05
## 10301   Jeff Foust             publicity    20 1573821 1.270793e-05
## 10302   Jeff Foust                puerto    20 1573821 1.270793e-05
## 10303   Jeff Foust         questionnaire    20 1573821 1.270793e-05
## 10304   Jeff Foust                 ratio    20 1573821 1.270793e-05
## 10305   Jeff Foust            recognizes    20 1573821 1.270793e-05
## 10306   Jeff Foust             recurring    20 1573821 1.270793e-05
## 10307   Jeff Foust            reschedule    20 1573821 1.270793e-05
## 10308   Jeff Foust              reticent    20 1573821 1.270793e-05
## 10309   Jeff Foust               revived    20 1573821 1.270793e-05
## 10310   Jeff Foust                    rp    20 1573821 1.270793e-05
## 10311   Jeff Foust                  rtgs    20 1573821 1.270793e-05
## 10312   Jeff Foust                 rural    20 1573821 1.270793e-05
## 10313   Jeff Foust                satcom    20 1573821 1.270793e-05
## 10314   Jeff Foust              saxavord    20 1573821 1.270793e-05
## 10315   Jeff Foust               schmitt    20 1573821 1.270793e-05
## 10316   Jeff Foust                sealed    20 1573821 1.270793e-05
## 10317   Jeff Foust              serafini    20 1573821 1.270793e-05
## 10318   Jeff Foust                  skip    20 1573821 1.270793e-05
## 10319   Jeff Foust                  soho    20 1573821 1.270793e-05
## 10320   Jeff Foust              speakers    20 1573821 1.270793e-05
## 10321   Jeff Foust                   sst    20 1573821 1.270793e-05
## 10322   Jeff Foust               stanley    20 1573821 1.270793e-05
## 10323   Jeff Foust        stationkeeping    20 1573821 1.270793e-05
## 10324   Jeff Foust          stratollites    20 1573821 1.270793e-05
## 10325   Jeff Foust             succeeded    20 1573821 1.270793e-05
## 10326   Jeff Foust             surviving    20 1573821 1.270793e-05
## 10327   Jeff Foust                tasked    20 1573821 1.270793e-05
## 10328   Jeff Foust               teaming    20 1573821 1.270793e-05
## 10329   Jeff Foust               tension    20 1573821 1.270793e-05
## 10330   Jeff Foust              terrific    20 1573821 1.270793e-05
## 10331   Jeff Foust             testified    20 1573821 1.270793e-05
## 10332   Jeff Foust            thoughtful    20 1573821 1.270793e-05
## 10333   Jeff Foust                thrive    20 1573821 1.270793e-05
## 10334   Jeff Foust                   tip    20 1573821 1.270793e-05
## 10335   Jeff Foust                  tony    20 1573821 1.270793e-05
## 10336   Jeff Foust            topography    20 1573821 1.270793e-05
## 10337   Jeff Foust              traction    20 1573821 1.270793e-05
## 10338   Jeff Foust           transitions    20 1573821 1.270793e-05
## 10339   Jeff Foust                triple    20 1573821 1.270793e-05
## 10340   Jeff Foust       troubleshooting    20 1573821 1.270793e-05
## 10341   Jeff Foust              uncommon    20 1573821 1.270793e-05
## 10342   Jeff Foust          uncontrolled    20 1573821 1.270793e-05
## 10343   Jeff Foust            underlying    20 1573821 1.270793e-05
## 10344   Jeff Foust             unlocking    20 1573821 1.270793e-05
## 10345   Jeff Foust                upbeat    20 1573821 1.270793e-05
## 10346   Jeff Foust                  v1.1    20 1573821 1.270793e-05
## 10347   Jeff Foust            vibrations    20 1573821 1.270793e-05
## 10348   Jeff Foust                victor    20 1573821 1.270793e-05
## 10349   Jeff Foust               violate    20 1573821 1.270793e-05
## 10350   Jeff Foust              volatile    20 1573821 1.270793e-05
## 10351   Jeff Foust                waited    20 1573821 1.270793e-05
## 10352   Jeff Foust               watched    20 1573821 1.270793e-05
## 10353   Jeff Foust                 watts    20 1573821 1.270793e-05
## 10354   Jeff Foust                worden    20 1573821 1.270793e-05
## 10355   Jeff Foust                xcor’s    20 1573821 1.270793e-05
## 10356   Jeff Foust                  zuma    20 1573821 1.270793e-05
## 10357 Sandra Erwin                 1970s    20  716353 2.791920e-05
## 10358 Sandra Erwin                    1a    20  716353 2.791920e-05
## 10359 Sandra Erwin               adapted    20  716353 2.791920e-05
## 10360 Sandra Erwin               adapter    20  716353 2.791920e-05
## 10361 Sandra Erwin              additive    20  716353 2.791920e-05
## 10362 Sandra Erwin              adjacent    20  716353 2.791920e-05
## 10363 Sandra Erwin       administrations    20  716353 2.791920e-05
## 10364 Sandra Erwin                advent    20  716353 2.791920e-05
## 10365 Sandra Erwin             alliances    20  716353 2.791920e-05
## 10366 Sandra Erwin                  alto    20  716353 2.791920e-05
## 10367 Sandra Erwin            analytical    20  716353 2.791920e-05
## 10368 Sandra Erwin             antitrust    20  716353 2.791920e-05
## 10369 Sandra Erwin                ariane    20  716353 2.791920e-05
## 10370 Sandra Erwin                aspect    20  716353 2.791920e-05
## 10371 Sandra Erwin              attended    20  716353 2.791920e-05
## 10372 Sandra Erwin             augmented    20  716353 2.791920e-05
## 10373 Sandra Erwin             automatic    20  716353 2.791920e-05
## 10374 Sandra Erwin               balloon    20  716353 2.791920e-05
## 10375 Sandra Erwin             behaviors    20  716353 2.791920e-05
## 10376 Sandra Erwin                  blow    20  716353 2.791920e-05
## 10377 Sandra Erwin                   bob    20  716353 2.791920e-05
## 10378 Sandra Erwin                  booz    20  716353 2.791920e-05
## 10379 Sandra Erwin               boulder    20  716353 2.791920e-05
## 10380 Sandra Erwin              captured    20  716353 2.791920e-05
## 10381 Sandra Erwin              carolina    20  716353 2.791920e-05
## 10382 Sandra Erwin               chamber    20  716353 2.791920e-05
## 10383 Sandra Erwin             chantilly    20  716353 2.791920e-05
## 10384 Sandra Erwin                chaser    20  716353 2.791920e-05
## 10385 Sandra Erwin                 comms    20  716353 2.791920e-05
## 10386 Sandra Erwin         consolidating    20  716353 2.791920e-05
## 10387 Sandra Erwin              constant    20  716353 2.791920e-05
## 10388 Sandra Erwin              controls    20  716353 2.791920e-05
## 10389 Sandra Erwin            corrective    20  716353 2.791920e-05
## 10390 Sandra Erwin                 count    20  716353 2.791920e-05
## 10391 Sandra Erwin               courses    20  716353 2.791920e-05
## 10392 Sandra Erwin                danger    20  716353 2.791920e-05
## 10393 Sandra Erwin               denying    20  716353 2.791920e-05
## 10394 Sandra Erwin           destruction    20  716353 2.791920e-05
## 10395 Sandra Erwin               disable    20  716353 2.791920e-05
## 10396 Sandra Erwin             distances    20  716353 2.791920e-05
## 10397 Sandra Erwin              dominate    20  716353 2.791920e-05
## 10398 Sandra Erwin             dominated    20  716353 2.791920e-05
## 10399 Sandra Erwin             embracing    20  716353 2.791920e-05
## 10400 Sandra Erwin                excess    20  716353 2.791920e-05
## 10401 Sandra Erwin             executing    20  716353 2.791920e-05
## 10402 Sandra Erwin                  faga    20  716353 2.791920e-05
## 10403 Sandra Erwin               figured    20  716353 2.791920e-05
## 10404 Sandra Erwin                filled    20  716353 2.791920e-05
## 10405 Sandra Erwin                firing    20  716353 2.791920e-05
## 10406 Sandra Erwin             francisco    20  716353 2.791920e-05
## 10407 Sandra Erwin               gateway    20  716353 2.791920e-05
## 10408 Sandra Erwin                  grab    20  716353 2.791920e-05
## 10409 Sandra Erwin                  greg    20  716353 2.791920e-05
## 10410 Sandra Erwin                hailed    20  716353 2.791920e-05
## 10411 Sandra Erwin             highlight    20  716353 2.791920e-05
## 10412 Sandra Erwin               hopeful    20  716353 2.791920e-05
## 10413 Sandra Erwin                    ii    20  716353 2.791920e-05
## 10414 Sandra Erwin               illegal    20  716353 2.791920e-05
## 10415 Sandra Erwin           individuals    20  716353 2.791920e-05
## 10416 Sandra Erwin           intentional    20  716353 2.791920e-05
## 10417 Sandra Erwin               japan’s    20  716353 2.791920e-05
## 10418 Sandra Erwin                  jump    20  716353 2.791920e-05
## 10419 Sandra Erwin                 kleos    20  716353 2.791920e-05
## 10420 Sandra Erwin                kymeta    20  716353 2.791920e-05
## 10421 Sandra Erwin              lobbying    20  716353 2.791920e-05
## 10422 Sandra Erwin            lockheed’s    20  716353 2.791920e-05
## 10423 Sandra Erwin               mantech    20  716353 2.791920e-05
## 10424 Sandra Erwin               matched    20  716353 2.791920e-05
## 10425 Sandra Erwin    megaconstellations    20  716353 2.791920e-05
## 10426 Sandra Erwin            memorandum    20  716353 2.791920e-05
## 10427 Sandra Erwin                mining    20  716353 2.791920e-05
## 10428 Sandra Erwin              morrison    20  716353 2.791920e-05
## 10429 Sandra Erwin             negotiate    20  716353 2.791920e-05
## 10430 Sandra Erwin                 nixon    20  716353 2.791920e-05
## 10431 Sandra Erwin                  norm    20  716353 2.791920e-05
## 10432 Sandra Erwin                npoess    20  716353 2.791920e-05
## 10433 Sandra Erwin                 nstxl    20  716353 2.791920e-05
## 10434 Sandra Erwin                    op    20  716353 2.791920e-05
## 10435 Sandra Erwin                optics    20  716353 2.791920e-05
## 10436 Sandra Erwin                  palo    20  716353 2.791920e-05
## 10437 Sandra Erwin                parikh    20  716353 2.791920e-05
## 10438 Sandra Erwin             partnered    20  716353 2.791920e-05
## 10439 Sandra Erwin               pegasus    20  716353 2.791920e-05
## 10440 Sandra Erwin               physics    20  716353 2.791920e-05
## 10441 Sandra Erwin               placing    20  716353 2.791920e-05
## 10442 Sandra Erwin                  pods    20  716353 2.791920e-05
## 10443 Sandra Erwin               prevail    20  716353 2.791920e-05
## 10444 Sandra Erwin             professor    20  716353 2.791920e-05
## 10445 Sandra Erwin              promises    20  716353 2.791920e-05
## 10446 Sandra Erwin                 quick    20  716353 2.791920e-05
## 10447 Sandra Erwin      recapitalization    20  716353 2.791920e-05
## 10448 Sandra Erwin              redacted    20  716353 2.791920e-05
## 10449 Sandra Erwin             remainder    20  716353 2.791920e-05
## 10450 Sandra Erwin                reston    20  716353 2.791920e-05
## 10451 Sandra Erwin              restrict    20  716353 2.791920e-05
## 10452 Sandra Erwin                 reuse    20  716353 2.791920e-05
## 10453 Sandra Erwin               routine    20  716353 2.791920e-05
## 10454 Sandra Erwin                  seed    20  716353 2.791920e-05
## 10455 Sandra Erwin                 shelf    20  716353 2.791920e-05
## 10456 Sandra Erwin                 shore    20  716353 2.791920e-05
## 10457 Sandra Erwin              shutdown    20  716353 2.791920e-05
## 10458 Sandra Erwin                 silos    20  716353 2.791920e-05
## 10459 Sandra Erwin                 slots    20  716353 2.791920e-05
## 10460 Sandra Erwin              sounding    20  716353 2.791920e-05
## 10461 Sandra Erwin             squadrons    20  716353 2.791920e-05
## 10462 Sandra Erwin                 steel    20  716353 2.791920e-05
## 10463 Sandra Erwin                 stick    20  716353 2.791920e-05
## 10464 Sandra Erwin            stovepipes    20  716353 2.791920e-05
## 10465 Sandra Erwin            streamline    20  716353 2.791920e-05
## 10466 Sandra Erwin                street    20  716353 2.791920e-05
## 10467 Sandra Erwin             stringent    20  716353 2.791920e-05
## 10468 Sandra Erwin            surprising    20  716353 2.791920e-05
## 10469 Sandra Erwin                tackle    20  716353 2.791920e-05
## 10470 Sandra Erwin                  tony    20  716353 2.791920e-05
## 10471 Sandra Erwin               trading    20  716353 2.791920e-05
## 10472 Sandra Erwin           transitions    20  716353 2.791920e-05
## 10473 Sandra Erwin           transparent    20  716353 2.791920e-05
## 10474 Sandra Erwin              unfunded    20  716353 2.791920e-05
## 10475 Sandra Erwin             uniformed    20  716353 2.791920e-05
## 10476 Sandra Erwin                verify    20  716353 2.791920e-05
## 10477 Sandra Erwin            visibility    20  716353 2.791920e-05
## 10478 Sandra Erwin                walter    20  716353 2.791920e-05
## 10479 Sandra Erwin                  warn    20  716353 2.791920e-05
## 10480 Sandra Erwin                 water    20  716353 2.791920e-05
## 10481 Sandra Erwin               website    20  716353 2.791920e-05
## 10482 Sandra Erwin                  we’d    20  716353 2.791920e-05
## 10483   Jeff Foust                  36th    19 1573821 1.207253e-05
## 10484   Jeff Foust                    aa    19 1573821 1.207253e-05
## 10485   Jeff Foust              abdalati    19 1573821 1.207253e-05
## 10486   Jeff Foust              abruptly    19 1573821 1.207253e-05
## 10487   Jeff Foust              accessed    19 1573821 1.207253e-05
## 10488   Jeff Foust              advising    19 1573821 1.207253e-05
## 10489   Jeff Foust              airliner    19 1573821 1.207253e-05
## 10490   Jeff Foust                 aisle    19 1573821 1.207253e-05
## 10491   Jeff Foust               alleged    19 1573821 1.207253e-05
## 10492   Jeff Foust            amazon.com    19 1573821 1.207253e-05
## 10493   Jeff Foust               apophis    19 1573821 1.207253e-05
## 10494   Jeff Foust             assigning    19 1573821 1.207253e-05
## 10495   Jeff Foust                barton    19 1573821 1.207253e-05
## 10496   Jeff Foust                 bases    19 1573821 1.207253e-05
## 10497   Jeff Foust                 borne    19 1573821 1.207253e-05
## 10498   Jeff Foust          broadcasting    19 1573821 1.207253e-05
## 10499   Jeff Foust               brokers    19 1573821 1.207253e-05
## 10500   Jeff Foust           bureaucracy    19 1573821 1.207253e-05
## 10501   Jeff Foust          calculations    19 1573821 1.207253e-05
## 10502   Jeff Foust              callisto    19 1573821 1.207253e-05
## 10503   Jeff Foust             cambridge    19 1573821 1.207253e-05
## 10504   Jeff Foust            capacities    19 1573821 1.207253e-05
## 10505   Jeff Foust               careers    19 1573821 1.207253e-05
## 10506   Jeff Foust                ccicap    19 1573821 1.207253e-05
## 10507   Jeff Foust              cellular    19 1573821 1.207253e-05
## 10508   Jeff Foust               centric    19 1573821 1.207253e-05
## 10509   Jeff Foust                 cheap    19 1573821 1.207253e-05
## 10510   Jeff Foust          complication    19 1573821 1.207253e-05
## 10511   Jeff Foust            conceptual    19 1573821 1.207253e-05
## 10512   Jeff Foust            concurrent    19 1573821 1.207253e-05
## 10513   Jeff Foust            congestion    19 1573821 1.207253e-05
## 10514   Jeff Foust         congratulated    19 1573821 1.207253e-05
## 10515   Jeff Foust          consistently    19 1573821 1.207253e-05
## 10516   Jeff Foust            constantly    19 1573821 1.207253e-05
## 10517   Jeff Foust              contella    19 1573821 1.207253e-05
## 10518   Jeff Foust           contentious    19 1573821 1.207253e-05
## 10519   Jeff Foust         corporation’s    19 1573821 1.207253e-05
## 10520   Jeff Foust             correctly    19 1573821 1.207253e-05
## 10521   Jeff Foust                  cory    19 1573821 1.207253e-05
## 10522   Jeff Foust             creditors    19 1573821 1.207253e-05
## 10523   Jeff Foust           criticizing    19 1573821 1.207253e-05
## 10524   Jeff Foust                  cusp    19 1573821 1.207253e-05
## 10525   Jeff Foust               cyclone    19 1573821 1.207253e-05
## 10526   Jeff Foust                 czech    19 1573821 1.207253e-05
## 10527   Jeff Foust                  dean    19 1573821 1.207253e-05
## 10528   Jeff Foust              delivers    19 1573821 1.207253e-05
## 10529   Jeff Foust             designers    19 1573821 1.207253e-05
## 10530   Jeff Foust              detector    19 1573821 1.207253e-05
## 10531   Jeff Foust                   dhs    19 1573821 1.207253e-05
## 10532   Jeff Foust               dibello    19 1573821 1.207253e-05
## 10533   Jeff Foust                    dm    19 1573821 1.207253e-05
## 10534   Jeff Foust           documentary    19 1573821 1.207253e-05
## 10535   Jeff Foust              downturn    19 1573821 1.207253e-05
## 10536   Jeff Foust                dreams    19 1573821 1.207253e-05
## 10537   Jeff Foust                dreier    19 1573821 1.207253e-05
## 10538   Jeff Foust           elaborating    19 1573821 1.207253e-05
## 10539   Jeff Foust                 elana    19 1573821 1.207253e-05
## 10540   Jeff Foust            eliminates    19 1573821 1.207253e-05
## 10541   Jeff Foust                  eros    19 1573821 1.207253e-05
## 10542   Jeff Foust             excessive    19 1573821 1.207253e-05
## 10543   Jeff Foust               exports    19 1573821 1.207253e-05
## 10544   Jeff Foust                 faded    19 1573821 1.207253e-05
## 10545   Jeff Foust               farside    19 1573821 1.207253e-05
## 10546   Jeff Foust                fixing    19 1573821 1.207253e-05
## 10547   Jeff Foust                flawed    19 1573821 1.207253e-05
## 10548   Jeff Foust               forever    19 1573821 1.207253e-05
## 10549   Jeff Foust                 gerst    19 1573821 1.207253e-05
## 10550   Jeff Foust               gilmour    19 1573821 1.207253e-05
## 10551   Jeff Foust                glided    19 1573821 1.207253e-05
## 10552   Jeff Foust             greenbelt    19 1573821 1.207253e-05
## 10553   Jeff Foust                  gsat    19 1573821 1.207253e-05
## 10554   Jeff Foust             guideline    19 1573821 1.207253e-05
## 10555   Jeff Foust                 helms    19 1573821 1.207253e-05
## 10556   Jeff Foust              hindered    19 1573821 1.207253e-05
## 10557   Jeff Foust              hofeller    19 1573821 1.207253e-05
## 10558   Jeff Foust              homeland    19 1573821 1.207253e-05
## 10559   Jeff Foust                 horse    19 1573821 1.207253e-05
## 10560   Jeff Foust              hospital    19 1573821 1.207253e-05
## 10561   Jeff Foust              hubble’s    19 1573821 1.207253e-05
## 10562   Jeff Foust              humidity    19 1573821 1.207253e-05
## 10563   Jeff Foust             incorrect    19 1573821 1.207253e-05
## 10564   Jeff Foust            indicating    19 1573821 1.207253e-05
## 10565   Jeff Foust              integral    19 1573821 1.207253e-05
## 10566   Jeff Foust               iterate    19 1573821 1.207253e-05
## 10567   Jeff Foust             iteration    19 1573821 1.207253e-05
## 10568   Jeff Foust             iterative    19 1573821 1.207253e-05
## 10569   Jeff Foust             jurvetson    19 1573821 1.207253e-05
## 10570   Jeff Foust                justin    19 1573821 1.207253e-05
## 10571   Jeff Foust                   kbr    19 1573821 1.207253e-05
## 10572   Jeff Foust            khrunichev    19 1573821 1.207253e-05
## 10573   Jeff Foust           kickstarter    19 1573821 1.207253e-05
## 10574   Jeff Foust               killing    19 1573821 1.207253e-05
## 10575   Jeff Foust                   kim    19 1573821 1.207253e-05
## 10576   Jeff Foust                  kuta    19 1573821 1.207253e-05
## 10577   Jeff Foust                 latin    19 1573821 1.207253e-05
## 10578   Jeff Foust                leased    19 1573821 1.207253e-05
## 10579   Jeff Foust                legion    19 1573821 1.207253e-05
## 10580   Jeff Foust                ligado    19 1573821 1.207253e-05
## 10581   Jeff Foust               lindley    19 1573821 1.207253e-05
## 10582   Jeff Foust                   lsa    19 1573821 1.207253e-05
## 10583   Jeff Foust                luvoir    19 1573821 1.207253e-05
## 10584   Jeff Foust            machinists    19 1573821 1.207253e-05
## 10585   Jeff Foust                manual    19 1573821 1.207253e-05
## 10586   Jeff Foust                  mare    19 1573821 1.207253e-05
## 10587   Jeff Foust           mathematics    19 1573821 1.207253e-05
## 10588   Jeff Foust                   mav    19 1573821 1.207253e-05
## 10589   Jeff Foust               maxar’s    19 1573821 1.207253e-05
## 10590   Jeff Foust                 mbrsc    19 1573821 1.207253e-05
## 10591   Jeff Foust              mexico’s    19 1573821 1.207253e-05
## 10592   Jeff Foust              michigan    19 1573821 1.207253e-05
## 10593   Jeff Foust                 midex    19 1573821 1.207253e-05
## 10594   Jeff Foust              mistakes    19 1573821 1.207253e-05
## 10595   Jeff Foust            mitsubishi    19 1573821 1.207253e-05
## 10596   Jeff Foust             munitions    19 1573821 1.207253e-05
## 10597   Jeff Foust                mutual    19 1573821 1.207253e-05
## 10598   Jeff Foust                   n.y    19 1573821 1.207253e-05
## 10599   Jeff Foust                  nash    19 1573821 1.207253e-05
## 10600   Jeff Foust                  nepa    19 1573821 1.207253e-05
## 10601   Jeff Foust                   ngl    19 1573821 1.207253e-05
## 10602   Jeff Foust        niederstrasser    19 1573821 1.207253e-05
## 10603   Jeff Foust               notable    19 1573821 1.207253e-05
## 10604   Jeff Foust                   nye    19 1573821 1.207253e-05
## 10605   Jeff Foust               outlook    19 1573821 1.207253e-05
## 10606   Jeff Foust              overseas    19 1573821 1.207253e-05
## 10607   Jeff Foust              overseen    19 1573821 1.207253e-05
## 10608   Jeff Foust           overwrapped    19 1573821 1.207253e-05
## 10609   Jeff Foust          palihapitiya    19 1573821 1.207253e-05
## 10610   Jeff Foust              paradigm    19 1573821 1.207253e-05
## 10611   Jeff Foust                 petro    19 1573821 1.207253e-05
## 10612   Jeff Foust              philippe    19 1573821 1.207253e-05
## 10613   Jeff Foust               plenary    19 1573821 1.207253e-05
## 10614   Jeff Foust              plesetsk    19 1573821 1.207253e-05
## 10615   Jeff Foust                   pnt    19 1573821 1.207253e-05
## 10616   Jeff Foust           politicians    19 1573821 1.207253e-05
## 10617   Jeff Foust                prefer    19 1573821 1.207253e-05
## 10618   Jeff Foust          prioritizing    19 1573821 1.207253e-05
## 10619   Jeff Foust           progressing    19 1573821 1.207253e-05
## 10620   Jeff Foust              prohibit    19 1573821 1.207253e-05
## 10621   Jeff Foust            projection    19 1573821 1.207253e-05
## 10622   Jeff Foust           proposition    19 1573821 1.207253e-05
## 10623   Jeff Foust                 randy    19 1573821 1.207253e-05
## 10624   Jeff Foust              readings    19 1573821 1.207253e-05
## 10625   Jeff Foust             realizing    19 1573821 1.207253e-05
## 10626   Jeff Foust                refers    19 1573821 1.207253e-05
## 10627   Jeff Foust               refrain    19 1573821 1.207253e-05
## 10628   Jeff Foust          registration    19 1573821 1.207253e-05
## 10629   Jeff Foust                  reid    19 1573821 1.207253e-05
## 10630   Jeff Foust             rejecting    19 1573821 1.207253e-05
## 10631   Jeff Foust              reliably    19 1573821 1.207253e-05
## 10632   Jeff Foust               replica    19 1573821 1.207253e-05
## 10633   Jeff Foust            reputation    19 1573821 1.207253e-05
## 10634   Jeff Foust             revisited    19 1573821 1.207253e-05
## 10635   Jeff Foust              rhetoric    19 1573821 1.207253e-05
## 10636   Jeff Foust                   rio    19 1573821 1.207253e-05
## 10637   Jeff Foust              robonaut    19 1573821 1.207253e-05
## 10638   Jeff Foust                   ron    19 1573821 1.207253e-05
## 10639   Jeff Foust               runways    19 1573821 1.207253e-05
## 10640   Jeff Foust             searching    19 1573821 1.207253e-05
## 10641   Jeff Foust               servant    19 1573821 1.207253e-05
## 10642   Jeff Foust              serviced    19 1573821 1.207253e-05
## 10643   Jeff Foust               settled    19 1573821 1.207253e-05
## 10644   Jeff Foust               seville    19 1573821 1.207253e-05
## 10645   Jeff Foust             shortened    19 1573821 1.207253e-05
## 10646   Jeff Foust                   ska    19 1573821 1.207253e-05
## 10647   Jeff Foust                 sleep    19 1573821 1.207253e-05
## 10648   Jeff Foust                soichi    19 1573821 1.207253e-05
## 10649   Jeff Foust          southwestern    19 1573821 1.207253e-05
## 10650   Jeff Foust     spacepolicyonline    19 1573821 1.207253e-05
## 10651   Jeff Foust     spaceresources.lu    19 1573821 1.207253e-05
## 10652   Jeff Foust           specialized    19 1573821 1.207253e-05
## 10653   Jeff Foust                 spohn    19 1573821 1.207253e-05
## 10654   Jeff Foust                    ss    19 1573821 1.207253e-05
## 10655   Jeff Foust               stalled    19 1573821 1.207253e-05
## 10656   Jeff Foust             statutory    19 1573821 1.207253e-05
## 10657   Jeff Foust              stopping    19 1573821 1.207253e-05
## 10658   Jeff Foust              stranded    19 1573821 1.207253e-05
## 10659   Jeff Foust            stretching    19 1573821 1.207253e-05
## 10660   Jeff Foust             struggles    19 1573821 1.207253e-05
## 10661   Jeff Foust                 strut    19 1573821 1.207253e-05
## 10662   Jeff Foust                stucky    19 1573821 1.207253e-05
## 10663   Jeff Foust                   sxm    19 1573821 1.207253e-05
## 10664   Jeff Foust              tackling    19 1573821 1.207253e-05
## 10665   Jeff Foust              tailored    19 1573821 1.207253e-05
## 10666   Jeff Foust                 throw    19 1573821 1.207253e-05
## 10667   Jeff Foust              touching    19 1573821 1.207253e-05
## 10668   Jeff Foust                touted    19 1573821 1.207253e-05
## 10669   Jeff Foust                 trace    19 1573821 1.207253e-05
## 10670   Jeff Foust              treasury    19 1573821 1.207253e-05
## 10671   Jeff Foust                triana    19 1573821 1.207253e-05
## 10672   Jeff Foust           unfavorable    19 1573821 1.207253e-05
## 10673   Jeff Foust                visits    19 1573821 1.207253e-05
## 10674   Jeff Foust             warranted    19 1573821 1.207253e-05
## 10675   Jeff Foust                  wins    19 1573821 1.207253e-05
## 10676   Jeff Foust                  wire    19 1573821 1.207253e-05
## 10677   Jeff Foust            withdrawal    19 1573821 1.207253e-05
## 10678   Jeff Foust               worries    19 1573821 1.207253e-05
## 10679   Jeff Foust                yahsat    19 1573821 1.207253e-05
## 10680 Sandra Erwin                  10th    19  716353 2.652324e-05
## 10681 Sandra Erwin                  abms    19  716353 2.652324e-05
## 10682 Sandra Erwin              adaptive    19  716353 2.652324e-05
## 10683 Sandra Erwin                   aim    19  716353 2.652324e-05
## 10684 Sandra Erwin              annually    19  716353 2.652324e-05
## 10685 Sandra Erwin           anticipates    19  716353 2.652324e-05
## 10686 Sandra Erwin                   aoa    19  716353 2.652324e-05
## 10687 Sandra Erwin            applicable    19  716353 2.652324e-05
## 10688 Sandra Erwin         appropriately    19  716353 2.652324e-05
## 10689 Sandra Erwin              assessed    19  716353 2.652324e-05
## 10690 Sandra Erwin            assignment    19  716353 2.652324e-05
## 10691 Sandra Erwin            astrobotic    19  716353 2.652324e-05
## 10692 Sandra Erwin              attached    19  716353 2.652324e-05
## 10693 Sandra Erwin              awaiting    19  716353 2.652324e-05
## 10694 Sandra Erwin               battery    19  716353 2.652324e-05
## 10695 Sandra Erwin              believed    19  716353 2.652324e-05
## 10696 Sandra Erwin                  body    19  716353 2.652324e-05
## 10697 Sandra Erwin             budgeting    19  716353 2.652324e-05
## 10698 Sandra Erwin             bythewood    19  716353 2.652324e-05
## 10699 Sandra Erwin              catalyst    19  716353 2.652324e-05
## 10700 Sandra Erwin                   ccs    19  716353 2.652324e-05
## 10701 Sandra Erwin           centimeters    19  716353 2.652324e-05
## 10702 Sandra Erwin              citizens    19  716353 2.652324e-05
## 10703 Sandra Erwin                client    19  716353 2.652324e-05
## 10704 Sandra Erwin         complementary    19  716353 2.652324e-05
## 10705 Sandra Erwin            connecting    19  716353 2.652324e-05
## 10706 Sandra Erwin        considerations    19  716353 2.652324e-05
## 10707 Sandra Erwin               contend    19  716353 2.652324e-05
## 10708 Sandra Erwin                 costa    19  716353 2.652324e-05
## 10709 Sandra Erwin               debates    19  716353 2.652324e-05
## 10710 Sandra Erwin                 depth    19  716353 2.652324e-05
## 10711 Sandra Erwin                   dia    19  716353 2.652324e-05
## 10712 Sandra Erwin             duplicate    19  716353 2.652324e-05
## 10713 Sandra Erwin             emphasize    19  716353 2.652324e-05
## 10714 Sandra Erwin            encourages    19  716353 2.652324e-05
## 10715 Sandra Erwin           encouraging    19  716353 2.652324e-05
## 10716 Sandra Erwin             envisions    19  716353 2.652324e-05
## 10717 Sandra Erwin              equation    19  716353 2.652324e-05
## 10718 Sandra Erwin            excellence    19  716353 2.652324e-05
## 10719 Sandra Erwin              fidelity    19  716353 2.652324e-05
## 10720 Sandra Erwin             florida’s    19  716353 2.652324e-05
## 10721 Sandra Erwin                  gold    19  716353 2.652324e-05
## 10722 Sandra Erwin             graduates    19  716353 2.652324e-05
## 10723 Sandra Erwin                 grand    19  716353 2.652324e-05
## 10724 Sandra Erwin               greatly    19  716353 2.652324e-05
## 10725 Sandra Erwin              holdings    19  716353 2.652324e-05
## 10726 Sandra Erwin                 ideal    19  716353 2.652324e-05
## 10727 Sandra Erwin             inaugural    19  716353 2.652324e-05
## 10728 Sandra Erwin            innovators    19  716353 2.652324e-05
## 10729 Sandra Erwin         intentionally    19  716353 2.652324e-05
## 10730 Sandra Erwin            internally    19  716353 2.652324e-05
## 10731 Sandra Erwin       internationally    19  716353 2.652324e-05
## 10732 Sandra Erwin           introducing    19  716353 2.652324e-05
## 10733 Sandra Erwin                 jadc2    19  716353 2.652324e-05
## 10734 Sandra Erwin              japanese    19  716353 2.652324e-05
## 10735 Sandra Erwin                kayhan    19  716353 2.652324e-05
## 10736 Sandra Erwin                 lacks    19  716353 2.652324e-05
## 10737 Sandra Erwin                  laws    19  716353 2.652324e-05
## 10738 Sandra Erwin                 lease    19  716353 2.652324e-05
## 10739 Sandra Erwin             leveraged    19  716353 2.652324e-05
## 10740 Sandra Erwin                 likes    19  716353 2.652324e-05
## 10741 Sandra Erwin                  loan    19  716353 2.652324e-05
## 10742 Sandra Erwin                 loren    19  716353 2.652324e-05
## 10743 Sandra Erwin                lowest    19  716353 2.652324e-05
## 10744 Sandra Erwin              mandrake    19  716353 2.652324e-05
## 10745 Sandra Erwin               marshal    19  716353 2.652324e-05
## 10746 Sandra Erwin              marshall    19  716353 2.652324e-05
## 10747 Sandra Erwin                mirror    19  716353 2.652324e-05
## 10748 Sandra Erwin                 mixed    19  716353 2.652324e-05
## 10749 Sandra Erwin                  mode    19  716353 2.652324e-05
## 10750 Sandra Erwin                murray    19  716353 2.652324e-05
## 10751 Sandra Erwin                nevada    19  716353 2.652324e-05
## 10752 Sandra Erwin              nominate    19  716353 2.652324e-05
## 10753 Sandra Erwin               notable    19  716353 2.652324e-05
## 10754 Sandra Erwin                   nox    19  716353 2.652324e-05
## 10755 Sandra Erwin              numerica    19  716353 2.652324e-05
## 10756 Sandra Erwin                offutt    19  716353 2.652324e-05
## 10757 Sandra Erwin          participants    19  716353 2.652324e-05
## 10758 Sandra Erwin                passes    19  716353 2.652324e-05
## 10759 Sandra Erwin               passing    19  716353 2.652324e-05
## 10760 Sandra Erwin             penetrate    19  716353 2.652324e-05
## 10761 Sandra Erwin            perception    19  716353 2.652324e-05
## 10762 Sandra Erwin            physically    19  716353 2.652324e-05
## 10763 Sandra Erwin                 pipes    19  716353 2.652324e-05
## 10764 Sandra Erwin           predictable    19  716353 2.652324e-05
## 10765 Sandra Erwin            presidency    19  716353 2.652324e-05
## 10766 Sandra Erwin            principles    19  716353 2.652324e-05
## 10767 Sandra Erwin              produces    19  716353 2.652324e-05
## 10768 Sandra Erwin            projecting    19  716353 2.652324e-05
## 10769 Sandra Erwin              prompted    19  716353 2.652324e-05
## 10770 Sandra Erwin                 psaki    19  716353 2.652324e-05
## 10771 Sandra Erwin                   ptw    19  716353 2.652324e-05
## 10772 Sandra Erwin            quantities    19  716353 2.652324e-05
## 10773 Sandra Erwin             rebranded    19  716353 2.652324e-05
## 10774 Sandra Erwin          reconstitute    19  716353 2.652324e-05
## 10775 Sandra Erwin             recurring    19  716353 2.652324e-05
## 10776 Sandra Erwin            remarkable    19  716353 2.652324e-05
## 10777 Sandra Erwin            repository    19  716353 2.652324e-05
## 10778 Sandra Erwin            resistance    19  716353 2.652324e-05
## 10779 Sandra Erwin                  rick    19  716353 2.652324e-05
## 10780 Sandra Erwin               rollout    19  716353 2.652324e-05
## 10781 Sandra Erwin                ronald    19  716353 2.652324e-05
## 10782 Sandra Erwin                   sgt    19  716353 2.652324e-05
## 10783 Sandra Erwin             signature    19  716353 2.652324e-05
## 10784 Sandra Erwin            skepticism    19  716353 2.652324e-05
## 10785 Sandra Erwin               slipped    19  716353 2.652324e-05
## 10786 Sandra Erwin               society    19  716353 2.652324e-05
## 10787 Sandra Erwin                sounds    19  716353 2.652324e-05
## 10788 Sandra Erwin                staffs    19  716353 2.652324e-05
## 10789 Sandra Erwin               staring    19  716353 2.652324e-05
## 10790 Sandra Erwin                 stuck    19  716353 2.652324e-05
## 10791 Sandra Erwin        subcontractors    19  716353 2.652324e-05
## 10792 Sandra Erwin              tailored    19  716353 2.652324e-05
## 10793 Sandra Erwin             takeaways    19  716353 2.652324e-05
## 10794 Sandra Erwin              taverney    19  716353 2.652324e-05
## 10795 Sandra Erwin               telling    19  716353 2.652324e-05
## 10796 Sandra Erwin               terrain    19  716353 2.652324e-05
## 10797 Sandra Erwin                 tight    19  716353 2.652324e-05
## 10798 Sandra Erwin               tracker    19  716353 2.652324e-05
## 10799 Sandra Erwin                trades    19  716353 2.652324e-05
## 10800 Sandra Erwin               undergo    19  716353 2.652324e-05
## 10801 Sandra Erwin                 usman    19  716353 2.652324e-05
## 10802 Sandra Erwin               vibrant    19  716353 2.652324e-05
## 10803 Sandra Erwin               victory    19  716353 2.652324e-05
## 10804 Sandra Erwin                 virts    19  716353 2.652324e-05
## 10805 Sandra Erwin                warden    19  716353 2.652324e-05
## 10806 Sandra Erwin               weighed    19  716353 2.652324e-05
## 10807 Sandra Erwin               whitney    19  716353 2.652324e-05
## 10808 Sandra Erwin                 words    19  716353 2.652324e-05
## 10809 Sandra Erwin                 worse    19  716353 2.652324e-05
## 10810 Sandra Erwin               writing    19  716353 2.652324e-05
## 10811   Jeff Foust                  30th    18 1573821 1.143713e-05
## 10812   Jeff Foust                  70th    18 1573821 1.143713e-05
## 10813   Jeff Foust                 acted    18 1573821 1.143713e-05
## 10814   Jeff Foust               adapted    18 1573821 1.143713e-05
## 10815   Jeff Foust                   ads    18 1573821 1.143713e-05
## 10816   Jeff Foust             aerospike    18 1573821 1.143713e-05
## 10817   Jeff Foust                 alarm    18 1573821 1.143713e-05
## 10818   Jeff Foust                 amend    18 1573821 1.143713e-05
## 10819   Jeff Foust            assumption    18 1573821 1.143713e-05
## 10820   Jeff Foust             astrocast    18 1573821 1.143713e-05
## 10821   Jeff Foust         automatically    18 1573821 1.143713e-05
## 10822   Jeff Foust              awardees    18 1573821 1.143713e-05
## 10823   Jeff Foust                 basin    18 1573821 1.143713e-05
## 10824   Jeff Foust                 begun    18 1573821 1.143713e-05
## 10825   Jeff Foust                 belts    18 1573821 1.143713e-05
## 10826   Jeff Foust              berkeley    18 1573821 1.143713e-05
## 10827   Jeff Foust               boggett    18 1573821 1.143713e-05
## 10828   Jeff Foust                  bond    18 1573821 1.143713e-05
## 10829   Jeff Foust             booster’s    18 1573821 1.143713e-05
## 10830   Jeff Foust                breaks    18 1573821 1.143713e-05
## 10831   Jeff Foust               bullish    18 1573821 1.143713e-05
## 10832   Jeff Foust                 cadre    18 1573821 1.143713e-05
## 10833   Jeff Foust          california’s    18 1573821 1.143713e-05
## 10834   Jeff Foust               cannito    18 1573821 1.143713e-05
## 10835   Jeff Foust              carolina    18 1573821 1.143713e-05
## 10836   Jeff Foust                  cell    18 1573821 1.143713e-05
## 10837   Jeff Foust              centauri    18 1573821 1.143713e-05
## 10838   Jeff Foust             character    18 1573821 1.143713e-05
## 10839   Jeff Foust               checked    18 1573821 1.143713e-05
## 10840   Jeff Foust               chicken    18 1573821 1.143713e-05
## 10841   Jeff Foust                circle    18 1573821 1.143713e-05
## 10842   Jeff Foust               clients    18 1573821 1.143713e-05
## 10843   Jeff Foust           conflicting    18 1573821 1.143713e-05
## 10844   Jeff Foust            constitute    18 1573821 1.143713e-05
## 10845   Jeff Foust              consumed    18 1573821 1.143713e-05
## 10846   Jeff Foust             consuming    18 1573821 1.143713e-05
## 10847   Jeff Foust          continuously    18 1573821 1.143713e-05
## 10848   Jeff Foust            convincing    18 1573821 1.143713e-05
## 10849   Jeff Foust                costly    18 1573821 1.143713e-05
## 10850   Jeff Foust                cracks    18 1573821 1.143713e-05
## 10851   Jeff Foust               crystal    18 1573821 1.143713e-05
## 10852   Jeff Foust                   cup    18 1573821 1.143713e-05
## 10853   Jeff Foust                   d.c    18 1573821 1.143713e-05
## 10854   Jeff Foust                daemen    18 1573821 1.143713e-05
## 10855   Jeff Foust                  dale    18 1573821 1.143713e-05
## 10856   Jeff Foust               darksat    18 1573821 1.143713e-05
## 10857   Jeff Foust               deborah    18 1573821 1.143713e-05
## 10858   Jeff Foust              declines    18 1573821 1.143713e-05
## 10859   Jeff Foust            definitive    18 1573821 1.143713e-05
## 10860   Jeff Foust                demise    18 1573821 1.143713e-05
## 10861   Jeff Foust                 dense    18 1573821 1.143713e-05
## 10862   Jeff Foust               descend    18 1573821 1.143713e-05
## 10863   Jeff Foust         developmental    18 1573821 1.143713e-05
## 10864   Jeff Foust            disclosing    18 1573821 1.143713e-05
## 10865   Jeff Foust             distances    18 1573821 1.143713e-05
## 10866   Jeff Foust              dominant    18 1573821 1.143713e-05
## 10867   Jeff Foust                duties    18 1573821 1.143713e-05
## 10868   Jeff Foust                eisele    18 1573821 1.143713e-05
## 10869   Jeff Foust                    en    18 1573821 1.143713e-05
## 10870   Jeff Foust              engaging    18 1573821 1.143713e-05
## 10871   Jeff Foust                   eos    18 1573821 1.143713e-05
## 10872   Jeff Foust               equally    18 1573821 1.143713e-05
## 10873   Jeff Foust                  eu’s    18 1573821 1.143713e-05
## 10874   Jeff Foust           evaluations    18 1573821 1.143713e-05
## 10875   Jeff Foust              expedite    18 1573821 1.143713e-05
## 10876   Jeff Foust                 faith    18 1573821 1.143713e-05
## 10877   Jeff Foust              fighting    18 1573821 1.143713e-05
## 10878   Jeff Foust              foremost    18 1573821 1.143713e-05
## 10879   Jeff Foust            frameworks    18 1573821 1.143713e-05
## 10880   Jeff Foust              furlough    18 1573821 1.143713e-05
## 10881   Jeff Foust               gaining    18 1573821 1.143713e-05
## 10882   Jeff Foust                   gdc    18 1573821 1.143713e-05
## 10883   Jeff Foust             generates    18 1573821 1.143713e-05
## 10884   Jeff Foust               generic    18 1573821 1.143713e-05
## 10885   Jeff Foust            geological    18 1573821 1.143713e-05
## 10886   Jeff Foust               handing    18 1573821 1.143713e-05
## 10887   Jeff Foust            harassment    18 1573821 1.143713e-05
## 10888   Jeff Foust            heightened    18 1573821 1.143713e-05
## 10889   Jeff Foust                 he’ll    18 1573821 1.143713e-05
## 10890   Jeff Foust             highlands    18 1573821 1.143713e-05
## 10891   Jeff Foust                hinder    18 1573821 1.143713e-05
## 10892   Jeff Foust              hispasat    18 1573821 1.143713e-05
## 10893   Jeff Foust               hurdles    18 1573821 1.143713e-05
## 10894   Jeff Foust            inadequate    18 1573821 1.143713e-05
## 10895   Jeff Foust          inclinations    18 1573821 1.143713e-05
## 10896   Jeff Foust                injury    18 1573821 1.143713e-05
## 10897   Jeff Foust                 inter    18 1573821 1.143713e-05
## 10898   Jeff Foust          investigated    18 1573821 1.143713e-05
## 10899   Jeff Foust               isotope    18 1573821 1.143713e-05
## 10900   Jeff Foust               jacques    18 1573821 1.143713e-05
## 10901   Jeff Foust                  jose    18 1573821 1.143713e-05
## 10902   Jeff Foust                khasis    18 1573821 1.143713e-05
## 10903   Jeff Foust              kilowatt    18 1573821 1.143713e-05
## 10904   Jeff Foust                   kit    18 1573821 1.143713e-05
## 10905   Jeff Foust                knight    18 1573821 1.143713e-05
## 10906   Jeff Foust                  kurt    18 1573821 1.143713e-05
## 10907   Jeff Foust               lagging    18 1573821 1.143713e-05
## 10908   Jeff Foust                  lake    18 1573821 1.143713e-05
## 10909   Jeff Foust               leaking    18 1573821 1.143713e-05
## 10910   Jeff Foust              lighting    18 1573821 1.143713e-05
## 10911   Jeff Foust           lightweight    18 1573821 1.143713e-05
## 10912   Jeff Foust              lindgren    18 1573821 1.143713e-05
## 10913   Jeff Foust                  loft    18 1573821 1.143713e-05
## 10914   Jeff Foust                 lopez    18 1573821 1.143713e-05
## 10915   Jeff Foust             louradour    18 1573821 1.143713e-05
## 10916   Jeff Foust                 lyles    18 1573821 1.143713e-05
## 10917   Jeff Foust              masten’s    18 1573821 1.143713e-05
## 10918   Jeff Foust             megahertz    18 1573821 1.143713e-05
## 10919   Jeff Foust                metals    18 1573821 1.143713e-05
## 10920   Jeff Foust               michele    18 1573821 1.143713e-05
## 10921   Jeff Foust                 morse    18 1573821 1.143713e-05
## 10922   Jeff Foust                 naftu    18 1573821 1.143713e-05
## 10923   Jeff Foust           negotiation    18 1573821 1.143713e-05
## 10924   Jeff Foust               neumann    18 1573821 1.143713e-05
## 10925   Jeff Foust             nicknamed    18 1573821 1.143713e-05
## 10926   Jeff Foust         notifications    18 1573821 1.143713e-05
## 10927   Jeff Foust                   nrc    18 1573821 1.143713e-05
## 10928   Jeff Foust              objected    18 1573821 1.143713e-05
## 10929   Jeff Foust         observatory’s    18 1573821 1.143713e-05
## 10930   Jeff Foust                  oita    18 1573821 1.143713e-05
## 10931   Jeff Foust              opinions    18 1573821 1.143713e-05
## 10932   Jeff Foust               orderly    18 1573821 1.143713e-05
## 10933   Jeff Foust              oriented    18 1573821 1.143713e-05
## 10934   Jeff Foust              parafoil    18 1573821 1.143713e-05
## 10935   Jeff Foust               parking    18 1573821 1.143713e-05
## 10936   Jeff Foust               parsons    18 1573821 1.143713e-05
## 10937   Jeff Foust              pathways    18 1573821 1.143713e-05
## 10938   Jeff Foust                pearce    18 1573821 1.143713e-05
## 10939   Jeff Foust            phenomenon    18 1573821 1.143713e-05
## 10940   Jeff Foust                phones    18 1573821 1.143713e-05
## 10941   Jeff Foust             powerpack    18 1573821 1.143713e-05
## 10942   Jeff Foust           predictable    18 1573821 1.143713e-05
## 10943   Jeff Foust                 print    18 1573821 1.143713e-05
## 10944   Jeff Foust        prioritization    18 1573821 1.143713e-05
## 10945   Jeff Foust           prohibition    18 1573821 1.143713e-05
## 10946   Jeff Foust             prohibits    18 1573821 1.143713e-05
## 10947   Jeff Foust                propel    18 1573821 1.143713e-05
## 10948   Jeff Foust           protections    18 1573821 1.143713e-05
## 10949   Jeff Foust            publicized    18 1573821 1.143713e-05
## 10950   Jeff Foust                 pylon    18 1573821 1.143713e-05
## 10951   Jeff Foust                 pyotr    18 1573821 1.143713e-05
## 10952   Jeff Foust                  r3d2    18 1573821 1.143713e-05
## 10953   Jeff Foust                 ranzo    18 1573821 1.143713e-05
## 10954   Jeff Foust           reestablish    18 1573821 1.143713e-05
## 10955   Jeff Foust                relays    18 1573821 1.143713e-05
## 10956   Jeff Foust                renton    18 1573821 1.143713e-05
## 10957   Jeff Foust        responsiveness    18 1573821 1.143713e-05
## 10958   Jeff Foust           resubmitted    18 1573821 1.143713e-05
## 10959   Jeff Foust            robustness    18 1573821 1.143713e-05
## 10960   Jeff Foust           rohrabacher    18 1573821 1.143713e-05
## 10961   Jeff Foust                 rubin    18 1573821 1.143713e-05
## 10962   Jeff Foust                    s7    18 1573821 1.143713e-05
## 10963   Jeff Foust                 sails    18 1573821 1.143713e-05
## 10964   Jeff Foust                  salt    18 1573821 1.143713e-05
## 10965   Jeff Foust              sandwich    18 1573821 1.143713e-05
## 10966   Jeff Foust                scales    18 1573821 1.143713e-05
## 10967   Jeff Foust                 sells    18 1573821 1.143713e-05
## 10968   Jeff Foust           sensitivity    18 1573821 1.143713e-05
## 10969   Jeff Foust                   sia    18 1573821 1.143713e-05
## 10970   Jeff Foust                   sn1    18 1573821 1.143713e-05
## 10971   Jeff Foust              solntsev    18 1573821 1.143713e-05
## 10972   Jeff Foust           splashdowns    18 1573821 1.143713e-05
## 10973   Jeff Foust                spoken    18 1573821 1.143713e-05
## 10974   Jeff Foust             stainless    18 1573821 1.143713e-05
## 10975   Jeff Foust           stimulating    18 1573821 1.143713e-05
## 10976   Jeff Foust                  stpi    18 1573821 1.143713e-05
## 10977   Jeff Foust             subjected    18 1573821 1.143713e-05
## 10978   Jeff Foust              suddenly    18 1573821 1.143713e-05
## 10979   Jeff Foust                  suni    18 1573821 1.143713e-05
## 10980   Jeff Foust                 thune    18 1573821 1.143713e-05
## 10981   Jeff Foust               tianwen    18 1573821 1.143713e-05
## 10982   Jeff Foust        transformative    18 1573821 1.143713e-05
## 10983   Jeff Foust             translate    18 1573821 1.143713e-05
## 10984   Jeff Foust                  tree    18 1573821 1.143713e-05
## 10985   Jeff Foust              troubled    18 1573821 1.143713e-05
## 10986   Jeff Foust                 truth    18 1573821 1.143713e-05
## 10987   Jeff Foust                 tuned    18 1573821 1.143713e-05
## 10988   Jeff Foust                tunnel    18 1573821 1.143713e-05
## 10989   Jeff Foust                 uae’s    18 1573821 1.143713e-05
## 10990   Jeff Foust            unforeseen    18 1573821 1.143713e-05
## 10991   Jeff Foust             universal    18 1573821 1.143713e-05
## 10992   Jeff Foust              unknowns    18 1573821 1.143713e-05
## 10993   Jeff Foust               vibrant    18 1573821 1.143713e-05
## 10994   Jeff Foust              visorsat    18 1573821 1.143713e-05
## 10995   Jeff Foust              volcanic    18 1573821 1.143713e-05
## 10996   Jeff Foust              vulcan’s    18 1573821 1.143713e-05
## 10997   Jeff Foust               warming    18 1573821 1.143713e-05
## 10998   Jeff Foust               warrant    18 1573821 1.143713e-05
## 10999   Jeff Foust               welding    18 1573821 1.143713e-05
## 11000   Jeff Foust                   wgs    18 1573821 1.143713e-05
## 11001   Jeff Foust               writing    18 1573821 1.143713e-05
## 11002   Jeff Foust                 wyler    18 1573821 1.143713e-05
## 11003   Jeff Foust                   yen    18 1573821 1.143713e-05
## 11004 Sandra Erwin             aerojet’s    18  716353 2.512728e-05
## 11005 Sandra Erwin              agnostic    18  716353 2.512728e-05
## 11006 Sandra Erwin           agriculture    18  716353 2.512728e-05
## 11007 Sandra Erwin             altitudes    18  716353 2.512728e-05
## 11008 Sandra Erwin                   app    18  716353 2.512728e-05
## 11009 Sandra Erwin              approves    18  716353 2.512728e-05
## 11010 Sandra Erwin                   art    18  716353 2.512728e-05
## 11011 Sandra Erwin            bankruptcy    18  716353 2.512728e-05
## 11012 Sandra Erwin            beneficial    18  716353 2.512728e-05
## 11013 Sandra Erwin                bidder    18  716353 2.512728e-05
## 11014 Sandra Erwin               booming    18  716353 2.512728e-05
## 11015 Sandra Erwin                boston    18  716353 2.512728e-05
## 11016 Sandra Erwin                 brost    18  716353 2.512728e-05
## 11017 Sandra Erwin               cadence    18  716353 2.512728e-05
## 11018 Sandra Erwin              calculus    18  716353 2.512728e-05
## 11019 Sandra Erwin              canceled    18  716353 2.512728e-05
## 11020 Sandra Erwin                  caps    18  716353 2.512728e-05
## 11021 Sandra Erwin                 cdata    18  716353 2.512728e-05
## 11022 Sandra Erwin               ceiling    18  716353 2.512728e-05
## 11023 Sandra Erwin              champion    18  716353 2.512728e-05
## 11024 Sandra Erwin                  city    18  716353 2.512728e-05
## 11025 Sandra Erwin               closing    18  716353 2.512728e-05
## 11026 Sandra Erwin                  club    18  716353 2.512728e-05
## 11027 Sandra Erwin             combining    18  716353 2.512728e-05
## 11028 Sandra Erwin         commercialize    18  716353 2.512728e-05
## 11029 Sandra Erwin             commodity    18  716353 2.512728e-05
## 11030 Sandra Erwin          competitions    18  716353 2.512728e-05
## 11031 Sandra Erwin           conclusions    18  716353 2.512728e-05
## 11032 Sandra Erwin             consumers    18  716353 2.512728e-05
## 11033 Sandra Erwin           contributed    18  716353 2.512728e-05
## 11034 Sandra Erwin              convince    18  716353 2.512728e-05
## 11035 Sandra Erwin          corporations    18  716353 2.512728e-05
## 11036 Sandra Erwin                cosmos    18  716353 2.512728e-05
## 11037 Sandra Erwin              credited    18  716353 2.512728e-05
## 11038 Sandra Erwin                  dave    18  716353 2.512728e-05
## 11039 Sandra Erwin                  dean    18  716353 2.512728e-05
## 11040 Sandra Erwin               defunct    18  716353 2.512728e-05
## 11041 Sandra Erwin              describe    18  716353 2.512728e-05
## 11042 Sandra Erwin             describes    18  716353 2.512728e-05
## 11043 Sandra Erwin                  ease    18  716353 2.512728e-05
## 11044 Sandra Erwin                echoed    18  716353 2.512728e-05
## 11045 Sandra Erwin                  edis    18  716353 2.512728e-05
## 11046 Sandra Erwin             elaborate    18  716353 2.512728e-05
## 11047 Sandra Erwin             exclusive    18  716353 2.512728e-05
## 11048 Sandra Erwin             exercised    18  716353 2.512728e-05
## 11049 Sandra Erwin              explains    18  716353 2.512728e-05
## 11050 Sandra Erwin               extreme    18  716353 2.512728e-05
## 11051 Sandra Erwin                finish    18  716353 2.512728e-05
## 11052 Sandra Erwin             forecasts    18  716353 2.512728e-05
## 11053 Sandra Erwin             formation    18  716353 2.512728e-05
## 11054 Sandra Erwin                 forms    18  716353 2.512728e-05
## 11055 Sandra Erwin           forthcoming    18  716353 2.512728e-05
## 11056 Sandra Erwin               fragile    18  716353 2.512728e-05
## 11057 Sandra Erwin               fulfill    18  716353 2.512728e-05
## 11058 Sandra Erwin                    gt    18  716353 2.512728e-05
## 11059 Sandra Erwin            guaranteed    18  716353 2.512728e-05
## 11060 Sandra Erwin                  guys    18  716353 2.512728e-05
## 11061 Sandra Erwin                  hall    18  716353 2.512728e-05
## 11062 Sandra Erwin               heavy’s    18  716353 2.512728e-05
## 11063 Sandra Erwin              hydrogen    18  716353 2.512728e-05
## 11064 Sandra Erwin                  inch    18  716353 2.512728e-05
## 11065 Sandra Erwin                 india    18  716353 2.512728e-05
## 11066 Sandra Erwin           indications    18  716353 2.512728e-05
## 11067 Sandra Erwin             integrity    18  716353 2.512728e-05
## 11068 Sandra Erwin          introduction    18  716353 2.512728e-05
## 11069 Sandra Erwin                  iraq    18  716353 2.512728e-05
## 11070 Sandra Erwin                   i’d    18  716353 2.512728e-05
## 11071 Sandra Erwin                 jones    18  716353 2.512728e-05
## 11072 Sandra Erwin          jurisdiction    18  716353 2.512728e-05
## 11073 Sandra Erwin               justice    18  716353 2.512728e-05
## 11074 Sandra Erwin                  kill    18  716353 2.512728e-05
## 11075 Sandra Erwin                 kwast    18  716353 2.512728e-05
## 11076 Sandra Erwin          laboratories    18  716353 2.512728e-05
## 11077 Sandra Erwin              latitude    18  716353 2.512728e-05
## 11078 Sandra Erwin                leaves    18  716353 2.512728e-05
## 11079 Sandra Erwin           limitations    18  716353 2.512728e-05
## 11080 Sandra Erwin              manpower    18  716353 2.512728e-05
## 11081 Sandra Erwin         massachusetts    18  716353 2.512728e-05
## 11082 Sandra Erwin            meaningful    18  716353 2.512728e-05
## 11083 Sandra Erwin             mechanism    18  716353 2.512728e-05
## 11084 Sandra Erwin              megabits    18  716353 2.512728e-05
## 11085 Sandra Erwin                 merit    18  716353 2.512728e-05
## 11086 Sandra Erwin               mounted    18  716353 2.512728e-05
## 11087 Sandra Erwin                  nina    18  716353 2.512728e-05
## 11088 Sandra Erwin                 nodes    18  716353 2.512728e-05
## 11089 Sandra Erwin              obstacle    18  716353 2.512728e-05
## 11090 Sandra Erwin                   oil    18  716353 2.512728e-05
## 11091 Sandra Erwin              optimize    18  716353 2.512728e-05
## 11092 Sandra Erwin                   osc    18  716353 2.512728e-05
## 11093 Sandra Erwin              overruns    18  716353 2.512728e-05
## 11094 Sandra Erwin                panels    18  716353 2.512728e-05
## 11095 Sandra Erwin             patterson    18  716353 2.512728e-05
## 11096 Sandra Erwin                  pete    18  716353 2.512728e-05
## 11097 Sandra Erwin              pipeline    18  716353 2.512728e-05
## 11098 Sandra Erwin                porter    18  716353 2.512728e-05
## 11099 Sandra Erwin                 ports    18  716353 2.512728e-05
## 11100 Sandra Erwin                 poses    18  716353 2.512728e-05
## 11101 Sandra Erwin             practical    18  716353 2.512728e-05
## 11102 Sandra Erwin                praise    18  716353 2.512728e-05
## 11103 Sandra Erwin          preparations    18  716353 2.512728e-05
## 11104 Sandra Erwin             promoting    18  716353 2.512728e-05
## 11105 Sandra Erwin              recovery    18  716353 2.512728e-05
## 11106 Sandra Erwin               refresh    18  716353 2.512728e-05
## 11107 Sandra Erwin             relations    18  716353 2.512728e-05
## 11108 Sandra Erwin              remotely    18  716353 2.512728e-05
## 11109 Sandra Erwin          reorganizing    18  716353 2.512728e-05
## 11110 Sandra Erwin              replaces    18  716353 2.512728e-05
## 11111 Sandra Erwin              reserves    18  716353 2.512728e-05
## 11112 Sandra Erwin                reside    18  716353 2.512728e-05
## 11113 Sandra Erwin             responded    18  716353 2.512728e-05
## 11114 Sandra Erwin            responding    18  716353 2.512728e-05
## 11115 Sandra Erwin                rounds    18  716353 2.512728e-05
## 11116 Sandra Erwin                   rps    18  716353 2.512728e-05
## 11117 Sandra Erwin                    sa    18  716353 2.512728e-05
## 11118 Sandra Erwin            scheduling    18  716353 2.512728e-05
## 11119 Sandra Erwin           secretaries    18  716353 2.512728e-05
## 11120 Sandra Erwin              securing    18  716353 2.512728e-05
## 11121 Sandra Erwin           sensitivity    18  716353 2.512728e-05
## 11122 Sandra Erwin               sitting    18  716353 2.512728e-05
## 11123 Sandra Erwin            situations    18  716353 2.512728e-05
## 11124 Sandra Erwin                skylus    18  716353 2.512728e-05
## 11125 Sandra Erwin                 soyuz    18  716353 2.512728e-05
## 11126 Sandra Erwin                 stays    18  716353 2.512728e-05
## 11127 Sandra Erwin               stopped    18  716353 2.512728e-05
## 11128 Sandra Erwin            structural    18  716353 2.512728e-05
## 11129 Sandra Erwin            struggling    18  716353 2.512728e-05
## 11130 Sandra Erwin              students    18  716353 2.512728e-05
## 11131 Sandra Erwin            submitting    18  716353 2.512728e-05
## 11132 Sandra Erwin              sullivan    18  716353 2.512728e-05
## 11133 Sandra Erwin              supplied    18  716353 2.512728e-05
## 11134 Sandra Erwin         survivability    18  716353 2.512728e-05
## 11135 Sandra Erwin              tensions    18  716353 2.512728e-05
## 11136 Sandra Erwin               testbed    18  716353 2.512728e-05
## 11137 Sandra Erwin              thousand    18  716353 2.512728e-05
## 11138 Sandra Erwin          transmission    18  716353 2.512728e-05
## 11139 Sandra Erwin            ubiquitous    18  716353 2.512728e-05
## 11140 Sandra Erwin              umbrella    18  716353 2.512728e-05
## 11141 Sandra Erwin                unfair    18  716353 2.512728e-05
## 11142 Sandra Erwin           unfortunate    18  716353 2.512728e-05
## 11143 Sandra Erwin                values    18  716353 2.512728e-05
## 11144 Sandra Erwin                   van    18  716353 2.512728e-05
## 11145 Sandra Erwin                visual    18  716353 2.512728e-05
## 11146 Sandra Erwin             voluntary    18  716353 2.512728e-05
## 11147 Sandra Erwin             volunteer    18  716353 2.512728e-05
## 11148   Jeff Foust                   12u    17 1573821 1.080174e-05
## 11149   Jeff Foust                  13th    17 1573821 1.080174e-05
## 11150   Jeff Foust                 2040s    17 1573821 1.080174e-05
## 11151   Jeff Foust                    2d    17 1573821 1.080174e-05
## 11152   Jeff Foust                  acid    17 1573821 1.080174e-05
## 11153   Jeff Foust               actress    17 1573821 1.080174e-05
## 11154   Jeff Foust             aftermath    17 1573821 1.080174e-05
## 11155   Jeff Foust           aggregators    17 1573821 1.080174e-05
## 11156   Jeff Foust               alameda    17 1573821 1.080174e-05
## 11157   Jeff Foust               almarri    17 1573821 1.080174e-05
## 11158   Jeff Foust              alneyadi    17 1573821 1.080174e-05
## 11159   Jeff Foust              answered    17 1573821 1.080174e-05
## 11160   Jeff Foust                 arena    17 1573821 1.080174e-05
## 11161   Jeff Foust             baltimore    17 1573821 1.080174e-05
## 11162   Jeff Foust               beneath    17 1573821 1.080174e-05
## 11163   Jeff Foust            blockchain    17 1573821 1.080174e-05
## 11164   Jeff Foust                  blow    17 1573821 1.080174e-05
## 11165   Jeff Foust               bottles    17 1573821 1.080174e-05
## 11166   Jeff Foust              boulders    17 1573821 1.080174e-05
## 11167   Jeff Foust                 brent    17 1573821 1.080174e-05
## 11168   Jeff Foust             canadarm2    17 1573821 1.080174e-05
## 11169   Jeff Foust              cardillo    17 1573821 1.080174e-05
## 11170   Jeff Foust               carissa    17 1573821 1.080174e-05
## 11171   Jeff Foust            cautionary    17 1573821 1.080174e-05
## 11172   Jeff Foust                    cf    17 1573821 1.080174e-05
## 11173   Jeff Foust             chemistry    17 1573821 1.080174e-05
## 11174   Jeff Foust                    cj    17 1573821 1.080174e-05
## 11175   Jeff Foust                 cocoa    17 1573821 1.080174e-05
## 11176   Jeff Foust             colliding    17 1573821 1.080174e-05
## 11177   Jeff Foust            commanding    17 1573821 1.080174e-05
## 11178   Jeff Foust          commensurate    17 1573821 1.080174e-05
## 11179   Jeff Foust            commentary    17 1573821 1.080174e-05
## 11180   Jeff Foust          communicated    17 1573821 1.080174e-05
## 11181   Jeff Foust         competition’s    17 1573821 1.080174e-05
## 11182   Jeff Foust        concentrations    17 1573821 1.080174e-05
## 11183   Jeff Foust              conducts    17 1573821 1.080174e-05
## 11184   Jeff Foust          confidential    17 1573821 1.080174e-05
## 11185   Jeff Foust            consisting    17 1573821 1.080174e-05
## 11186   Jeff Foust                corner    17 1573821 1.080174e-05
## 11187   Jeff Foust           credibility    17 1573821 1.080174e-05
## 11188   Jeff Foust                crunch    17 1573821 1.080174e-05
## 11189   Jeff Foust             culminate    17 1573821 1.080174e-05
## 11190   Jeff Foust              dankberg    17 1573821 1.080174e-05
## 11191   Jeff Foust               dawkins    17 1573821 1.080174e-05
## 11192   Jeff Foust                  dear    17 1573821 1.080174e-05
## 11193   Jeff Foust              dearmoon    17 1573821 1.080174e-05
## 11194   Jeff Foust             declaring    17 1573821 1.080174e-05
## 11195   Jeff Foust               deflect    17 1573821 1.080174e-05
## 11196   Jeff Foust              degraded    17 1573821 1.080174e-05
## 11197   Jeff Foust               departs    17 1573821 1.080174e-05
## 11198   Jeff Foust               destroy    17 1573821 1.080174e-05
## 11199   Jeff Foust                divest    17 1573821 1.080174e-05
## 11200   Jeff Foust               donated    17 1573821 1.080174e-05
## 11201   Jeff Foust              drafting    17 1573821 1.080174e-05
## 11202   Jeff Foust                drones    17 1573821 1.080174e-05
## 11203   Jeff Foust               elapsed    17 1573821 1.080174e-05
## 11204   Jeff Foust          encapsulated    17 1573821 1.080174e-05
## 11205   Jeff Foust               english    17 1573821 1.080174e-05
## 11206   Jeff Foust               epsilon    17 1573821 1.080174e-05
## 11207   Jeff Foust                esprit    17 1573821 1.080174e-05
## 11208   Jeff Foust           establishes    17 1573821 1.080174e-05
## 11209   Jeff Foust             exercises    17 1573821 1.080174e-05
## 11210   Jeff Foust            extrasolar    17 1573821 1.080174e-05
## 11211   Jeff Foust                 fixes    17 1573821 1.080174e-05
## 11212   Jeff Foust             gateway’s    17 1573821 1.080174e-05
## 11213   Jeff Foust              generous    17 1573821 1.080174e-05
## 11214   Jeff Foust              google’s    17 1573821 1.080174e-05
## 11215   Jeff Foust              governed    17 1573821 1.080174e-05
## 11216   Jeff Foust          governmental    17 1573821 1.080174e-05
## 11217   Jeff Foust                 gross    17 1573821 1.080174e-05
## 11218   Jeff Foust                guided    17 1573821 1.080174e-05
## 11219   Jeff Foust              hardened    17 1573821 1.080174e-05
## 11220   Jeff Foust            healthcare    17 1573821 1.080174e-05
## 11221   Jeff Foust                 hedge    17 1573821 1.080174e-05
## 11222   Jeff Foust                 hicks    17 1573821 1.080174e-05
## 11223   Jeff Foust            imperative    17 1573821 1.080174e-05
## 11224   Jeff Foust          indefinitely    17 1573821 1.080174e-05
## 11225   Jeff Foust              inertial    17 1573821 1.080174e-05
## 11226   Jeff Foust             instagram    17 1573821 1.080174e-05
## 11227   Jeff Foust          instructions    17 1573821 1.080174e-05
## 11228   Jeff Foust          intermittent    17 1573821 1.080174e-05
## 11229   Jeff Foust           interpreter    17 1573821 1.080174e-05
## 11230   Jeff Foust             inventory    17 1573821 1.080174e-05
## 11231   Jeff Foust                invite    17 1573821 1.080174e-05
## 11232   Jeff Foust                    io    17 1573821 1.080174e-05
## 11233   Jeff Foust                  iris    17 1573821 1.080174e-05
## 11234   Jeff Foust                jeanne    17 1573821 1.080174e-05
## 11235   Jeff Foust                  jsat    17 1573821 1.080174e-05
## 11236   Jeff Foust                juno’s    17 1573821 1.080174e-05
## 11237   Jeff Foust             justified    17 1573821 1.080174e-05
## 11238   Jeff Foust                   kea    17 1573821 1.080174e-05
## 11239   Jeff Foust              kepler’s    17 1573821 1.080174e-05
## 11240   Jeff Foust                kicked    17 1573821 1.080174e-05
## 11241   Jeff Foust                  kill    17 1573821 1.080174e-05
## 11242   Jeff Foust                kilmer    17 1573821 1.080174e-05
## 11243   Jeff Foust                  king    17 1573821 1.080174e-05
## 11244   Jeff Foust                 kjell    17 1573821 1.080174e-05
## 11245   Jeff Foust                  kruk    17 1573821 1.080174e-05
## 11246   Jeff Foust              lansdorp    17 1573821 1.080174e-05
## 11247   Jeff Foust              launch’s    17 1573821 1.080174e-05
## 11248   Jeff Foust                  lego    17 1573821 1.080174e-05
## 11249   Jeff Foust              magellan    17 1573821 1.080174e-05
## 11250   Jeff Foust                maiden    17 1573821 1.080174e-05
## 11251   Jeff Foust            managerial    17 1573821 1.080174e-05
## 11252   Jeff Foust           materialize    17 1573821 1.080174e-05
## 11253   Jeff Foust            measurable    17 1573821 1.080174e-05
## 11254   Jeff Foust                mercer    17 1573821 1.080174e-05
## 11255   Jeff Foust        microsatellite    17 1573821 1.080174e-05
## 11256   Jeff Foust               mixture    17 1573821 1.080174e-05
## 11257   Jeff Foust             modernize    17 1573821 1.080174e-05
## 11258   Jeff Foust             mountains    17 1573821 1.080174e-05
## 11259   Jeff Foust        multiplanetary    17 1573821 1.080174e-05
## 11260   Jeff Foust         multispectral    17 1573821 1.080174e-05
## 11261   Jeff Foust                 nears    17 1573821 1.080174e-05
## 11262   Jeff Foust           newtonthree    17 1573821 1.080174e-05
## 11263   Jeff Foust                 noble    17 1573821 1.080174e-05
## 11264   Jeff Foust             nominally    17 1573821 1.080174e-05
## 11265   Jeff Foust            obligation    17 1573821 1.080174e-05
## 11266   Jeff Foust                  ochs    17 1573821 1.080174e-05
## 11267   Jeff Foust                   ocx    17 1573821 1.080174e-05
## 11268   Jeff Foust              openings    17 1573821 1.080174e-05
## 11269   Jeff Foust             paragraph    17 1573821 1.080174e-05
## 11270   Jeff Foust               passive    17 1573821 1.080174e-05
## 11271   Jeff Foust              periodic    17 1573821 1.080174e-05
## 11272   Jeff Foust            phenomenal    17 1573821 1.080174e-05
## 11273   Jeff Foust              pioneers    17 1573821 1.080174e-05
## 11274   Jeff Foust                 pitch    17 1573821 1.080174e-05
## 11275   Jeff Foust             placement    17 1573821 1.080174e-05
## 11276   Jeff Foust           polarimetry    17 1573821 1.080174e-05
## 11277   Jeff Foust                 posey    17 1573821 1.080174e-05
## 11278   Jeff Foust          postponement    17 1573821 1.080174e-05
## 11279   Jeff Foust                 posts    17 1573821 1.080174e-05
## 11280   Jeff Foust          preservation    17 1573821 1.080174e-05
## 11281   Jeff Foust                 pride    17 1573821 1.080174e-05
## 11282   Jeff Foust               profits    17 1573821 1.080174e-05
## 11283   Jeff Foust              profound    17 1573821 1.080174e-05
## 11284   Jeff Foust                 psaki    17 1573821 1.080174e-05
## 11285   Jeff Foust                puzzle    17 1573821 1.080174e-05
## 11286   Jeff Foust                 quest    17 1573821 1.080174e-05
## 11287   Jeff Foust                  raja    17 1573821 1.080174e-05
## 11288   Jeff Foust                   rbi    17 1573821 1.080174e-05
## 11289   Jeff Foust               readily    17 1573821 1.080174e-05
## 11290   Jeff Foust               reading    17 1573821 1.080174e-05
## 11291   Jeff Foust            reaffirmed    17 1573821 1.080174e-05
## 11292   Jeff Foust             recalling    17 1573821 1.080174e-05
## 11293   Jeff Foust             reconcile    17 1573821 1.080174e-05
## 11294   Jeff Foust              refining    17 1573821 1.080174e-05
## 11295   Jeff Foust              refugees    17 1573821 1.080174e-05
## 11296   Jeff Foust          reimbursable    17 1573821 1.080174e-05
## 11297   Jeff Foust                resign    17 1573821 1.080174e-05
## 11298   Jeff Foust              restores    17 1573821 1.080174e-05
## 11299   Jeff Foust                  rico    17 1573821 1.080174e-05
## 11300   Jeff Foust                 rigor    17 1573821 1.080174e-05
## 11301   Jeff Foust                 roads    17 1573821 1.080174e-05
## 11302   Jeff Foust               rushing    17 1573821 1.080174e-05
## 11303   Jeff Foust                safest    17 1573821 1.080174e-05
## 11304   Jeff Foust                scenes    17 1573821 1.080174e-05
## 11305   Jeff Foust                scheme    17 1573821 1.080174e-05
## 11306   Jeff Foust                 scoop    17 1573821 1.080174e-05
## 11307   Jeff Foust                   sdi    17 1573821 1.080174e-05
## 11308   Jeff Foust              seraphim    17 1573821 1.080174e-05
## 11309   Jeff Foust                shadow    17 1573821 1.080174e-05
## 11310   Jeff Foust                 sight    17 1573821 1.080174e-05
## 11311   Jeff Foust               skilled    17 1573821 1.080174e-05
## 11312   Jeff Foust           smithsonian    17 1573821 1.080174e-05
## 11313   Jeff Foust               solving    17 1573821 1.080174e-05
## 11314   Jeff Foust             spaceil’s    17 1573821 1.080174e-05
## 11315   Jeff Foust            spaceships    17 1573821 1.080174e-05
## 11316   Jeff Foust                 spike    17 1573821 1.080174e-05
## 11317   Jeff Foust           sponsorship    17 1573821 1.080174e-05
## 11318   Jeff Foust               spotted    17 1573821 1.080174e-05
## 11319   Jeff Foust            stabilized    17 1573821 1.080174e-05
## 11320   Jeff Foust              steadily    17 1573821 1.080174e-05
## 11321   Jeff Foust               stories    17 1573821 1.080174e-05
## 11322   Jeff Foust         subcontractor    17 1573821 1.080174e-05
## 11323   Jeff Foust           subscribers    17 1573821 1.080174e-05
## 11324   Jeff Foust          subscription    17 1573821 1.080174e-05
## 11325   Jeff Foust             subsystem    17 1573821 1.080174e-05
## 11326   Jeff Foust                 sun’s    17 1573821 1.080174e-05
## 11327   Jeff Foust                 suomi    17 1573821 1.080174e-05
## 11328   Jeff Foust                 taber    17 1573821 1.080174e-05
## 11329   Jeff Foust                 talon    17 1573821 1.080174e-05
## 11330   Jeff Foust                tanker    17 1573821 1.080174e-05
## 11331   Jeff Foust               tapping    17 1573821 1.080174e-05
## 11332   Jeff Foust                taurus    17 1573821 1.080174e-05
## 11333   Jeff Foust     telecommunication    17 1573821 1.080174e-05
## 11334   Jeff Foust              telegram    17 1573821 1.080174e-05
## 11335   Jeff Foust               tenuous    17 1573821 1.080174e-05
## 11336   Jeff Foust                tether    17 1573821 1.080174e-05
## 11337   Jeff Foust                themed    17 1573821 1.080174e-05
## 11338   Jeff Foust               thierry    17 1573821 1.080174e-05
## 11339   Jeff Foust                 timed    17 1573821 1.080174e-05
## 11340   Jeff Foust                   tma    17 1573821 1.080174e-05
## 11341   Jeff Foust                   tmt    17 1573821 1.080174e-05
## 11342   Jeff Foust                 tyson    17 1573821 1.080174e-05
## 11343   Jeff Foust               uranium    17 1573821 1.080174e-05
## 11344   Jeff Foust                  usgs    17 1573821 1.080174e-05
## 11345   Jeff Foust                  usra    17 1573821 1.080174e-05
## 11346   Jeff Foust                vagner    17 1573821 1.080174e-05
## 11347   Jeff Foust            violations    17 1573821 1.080174e-05
## 11348   Jeff Foust              visitors    17 1573821 1.080174e-05
## 11349   Jeff Foust                   vox    17 1573821 1.080174e-05
## 11350   Jeff Foust                wholly    17 1573821 1.080174e-05
## 11351   Jeff Foust                winter    17 1573821 1.080174e-05
## 11352   Jeff Foust             workshops    17 1573821 1.080174e-05
## 11353   Jeff Foust              yuzhmash    17 1573821 1.080174e-05
## 11354 Sandra Erwin           afghanistan    17  716353 2.373132e-05
## 11355 Sandra Erwin            ambassador    17  716353 2.373132e-05
## 11356 Sandra Erwin              analyses    17  716353 2.373132e-05
## 11357 Sandra Erwin         announcements    17  716353 2.373132e-05
## 11358 Sandra Erwin               anymore    17  716353 2.373132e-05
## 11359 Sandra Erwin              apparent    17  716353 2.373132e-05
## 11360 Sandra Erwin               archive    17  716353 2.373132e-05
## 11361 Sandra Erwin                arnold    17  716353 2.373132e-05
## 11362 Sandra Erwin          arrangements    17  716353 2.373132e-05
## 11363 Sandra Erwin           assignments    17  716353 2.373132e-05
## 11364 Sandra Erwin              assuming    17  716353 2.373132e-05
## 11365 Sandra Erwin             attempted    17  716353 2.373132e-05
## 11366 Sandra Erwin              auditors    17  716353 2.373132e-05
## 11367 Sandra Erwin               authors    17  716353 2.373132e-05
## 11368 Sandra Erwin             battalion    17  716353 2.373132e-05
## 11369 Sandra Erwin                  bear    17  716353 2.373132e-05
## 11370 Sandra Erwin                 black    17  716353 2.373132e-05
## 11371 Sandra Erwin             buildings    17  716353 2.373132e-05
## 11372 Sandra Erwin             campaigns    17  716353 2.373132e-05
## 11373 Sandra Erwin                cancel    17  716353 2.373132e-05
## 11374 Sandra Erwin                casino    17  716353 2.373132e-05
## 11375 Sandra Erwin               caution    17  716353 2.373132e-05
## 11376 Sandra Erwin                 cells    17  716353 2.373132e-05
## 11377 Sandra Erwin                 cfscc    17  716353 2.373132e-05
## 11378 Sandra Erwin               cleanup    17  716353 2.373132e-05
## 11379 Sandra Erwin                   cna    17  716353 2.373132e-05
## 11380 Sandra Erwin            colorado’s    17  716353 2.373132e-05
## 11381 Sandra Erwin         compatibility    17  716353 2.373132e-05
## 11382 Sandra Erwin           conjunction    17  716353 2.373132e-05
## 11383 Sandra Erwin          conservative    17  716353 2.373132e-05
## 11384 Sandra Erwin           constrained    17  716353 2.373132e-05
## 11385 Sandra Erwin           contingency    17  716353 2.373132e-05
## 11386 Sandra Erwin                   cox    17  716353 2.373132e-05
## 11387 Sandra Erwin                   crs    17  716353 2.373132e-05
## 11388 Sandra Erwin                 curve    17  716353 2.373132e-05
## 11389 Sandra Erwin            deployable    17  716353 2.373132e-05
## 11390 Sandra Erwin               deptula    17  716353 2.373132e-05
## 11391 Sandra Erwin               desired    17  716353 2.373132e-05
## 11392 Sandra Erwin             disasters    17  716353 2.373132e-05
## 11393 Sandra Erwin             dismissed    17  716353 2.373132e-05
## 11394 Sandra Erwin                 diu’s    17  716353 2.373132e-05
## 11395 Sandra Erwin                   dsx    17  716353 2.373132e-05
## 11396 Sandra Erwin                   eim    17  716353 2.373132e-05
## 11397 Sandra Erwin             emergence    17  716353 2.373132e-05
## 11398 Sandra Erwin             emissions    17  716353 2.373132e-05
## 11399 Sandra Erwin             empowered    17  716353 2.373132e-05
## 11400 Sandra Erwin           endorsement    17  716353 2.373132e-05
## 11401 Sandra Erwin             exception    17  716353 2.373132e-05
## 11402 Sandra Erwin           exclusively    17  716353 2.373132e-05
## 11403 Sandra Erwin          exploitation    17  716353 2.373132e-05
## 11404 Sandra Erwin                 false    17  716353 2.373132e-05
## 11405 Sandra Erwin               filling    17  716353 2.373132e-05
## 11406 Sandra Erwin                fleets    17  716353 2.373132e-05
## 11407 Sandra Erwin                forbes    17  716353 2.373132e-05
## 11408 Sandra Erwin               forming    17  716353 2.373132e-05
## 11409 Sandra Erwin                 geost    17  716353 2.373132e-05
## 11410 Sandra Erwin                 giant    17  716353 2.373132e-05
## 11411 Sandra Erwin               granted    17  716353 2.373132e-05
## 11412 Sandra Erwin                 green    17  716353 2.373132e-05
## 11413 Sandra Erwin            groundwork    17  716353 2.373132e-05
## 11414 Sandra Erwin                hadley    17  716353 2.373132e-05
## 11415 Sandra Erwin              handheld    17  716353 2.373132e-05
## 11416 Sandra Erwin                 hesar    17  716353 2.373132e-05
## 11417 Sandra Erwin            historical    17  716353 2.373132e-05
## 11418 Sandra Erwin              holistic    17  716353 2.373132e-05
## 11419 Sandra Erwin            horizontal    17  716353 2.373132e-05
## 11420 Sandra Erwin                   hub    17  716353 2.373132e-05
## 11421 Sandra Erwin                 iceye    17  716353 2.373132e-05
## 11422 Sandra Erwin                inject    17  716353 2.373132e-05
## 11423 Sandra Erwin                insist    17  716353 2.373132e-05
## 11424 Sandra Erwin           interaction    17  716353 2.373132e-05
## 11425 Sandra Erwin                invite    17  716353 2.373132e-05
## 11426 Sandra Erwin                 jamie    17  716353 2.373132e-05
## 11427 Sandra Erwin                jammed    17  716353 2.373132e-05
## 11428 Sandra Erwin                  jroc    17  716353 2.373132e-05
## 11429 Sandra Erwin               karbler    17  716353 2.373132e-05
## 11430 Sandra Erwin              kathleen    17  716353 2.373132e-05
## 11431 Sandra Erwin           krolikowski    17  716353 2.373132e-05
## 11432 Sandra Erwin               kubasik    17  716353 2.373132e-05
## 11433 Sandra Erwin                    l3    17  716353 2.373132e-05
## 11434 Sandra Erwin               lagging    17  716353 2.373132e-05
## 11435 Sandra Erwin                  ldpe    17  716353 2.373132e-05
## 11436 Sandra Erwin                lesson    17  716353 2.373132e-05
## 11437 Sandra Erwin             lexington    17  716353 2.373132e-05
## 11438 Sandra Erwin            lieutenant    17  716353 2.373132e-05
## 11439 Sandra Erwin                 lopez    17  716353 2.373132e-05
## 11440 Sandra Erwin                  loud    17  716353 2.373132e-05
## 11441 Sandra Erwin                  lsas    17  716353 2.373132e-05
## 11442 Sandra Erwin                 mandy    17  716353 2.373132e-05
## 11443 Sandra Erwin              maximize    17  716353 2.373132e-05
## 11444 Sandra Erwin                missed    17  716353 2.373132e-05
## 11445 Sandra Erwin              moultrie    17  716353 2.373132e-05
## 11446 Sandra Erwin          multibillion    17  716353 2.373132e-05
## 11447 Sandra Erwin                   net    17  716353 2.373132e-05
## 11448 Sandra Erwin                  nssa    17  716353 2.373132e-05
## 11449 Sandra Erwin                obtain    17  716353 2.373132e-05
## 11450 Sandra Erwin               outpace    17  716353 2.373132e-05
## 11451 Sandra Erwin                overly    17  716353 2.373132e-05
## 11452 Sandra Erwin              override    17  716353 2.373132e-05
## 11453 Sandra Erwin                owners    17  716353 2.373132e-05
## 11454 Sandra Erwin             o’connell    17  716353 2.373132e-05
## 11455 Sandra Erwin                   p.m    17  716353 2.373132e-05
## 11456 Sandra Erwin                partly    17  716353 2.373132e-05
## 11457 Sandra Erwin                 paths    17  716353 2.373132e-05
## 11458 Sandra Erwin                 phone    17  716353 2.373132e-05
## 11459 Sandra Erwin                portal    17  716353 2.373132e-05
## 11460 Sandra Erwin             precisely    17  716353 2.373132e-05
## 11461 Sandra Erwin             pressures    17  716353 2.373132e-05
## 11462 Sandra Erwin             program’s    17  716353 2.373132e-05
## 11463 Sandra Erwin               pursuit    17  716353 2.373132e-05
## 11464 Sandra Erwin                   quo    17  716353 2.373132e-05
## 11465 Sandra Erwin                 raley    17  716353 2.373132e-05
## 11466 Sandra Erwin               reactor    17  716353 2.373132e-05
## 11467 Sandra Erwin             realigned    17  716353 2.373132e-05
## 11468 Sandra Erwin              recruits    17  716353 2.373132e-05
## 11469 Sandra Erwin             reflected    17  716353 2.373132e-05
## 11470 Sandra Erwin            regulation    17  716353 2.373132e-05
## 11471 Sandra Erwin              repeated    17  716353 2.373132e-05
## 11472 Sandra Erwin             replicate    17  716353 2.373132e-05
## 11473 Sandra Erwin            restricted    17  716353 2.373132e-05
## 11474 Sandra Erwin                   ret    17  716353 2.373132e-05
## 11475 Sandra Erwin           retaliation    17  716353 2.373132e-05
## 11476 Sandra Erwin            revolution    17  716353 2.373132e-05
## 11477 Sandra Erwin                 risky    17  716353 2.373132e-05
## 11478 Sandra Erwin               roesler    17  716353 2.373132e-05
## 11479 Sandra Erwin                 route    17  716353 2.373132e-05
## 11480 Sandra Erwin                  ruag    17  716353 2.373132e-05
## 11481 Sandra Erwin             sanctions    17  716353 2.373132e-05
## 11482 Sandra Erwin              senate’s    17  716353 2.373132e-05
## 11483 Sandra Erwin            separating    17  716353 2.373132e-05
## 11484 Sandra Erwin              shooting    17  716353 2.373132e-05
## 11485 Sandra Erwin               shorter    17  716353 2.373132e-05
## 11486 Sandra Erwin                skysat    17  716353 2.373132e-05
## 11487 Sandra Erwin            soliciting    17  716353 2.373132e-05
## 11488 Sandra Erwin                 spain    17  716353 2.373132e-05
## 11489 Sandra Erwin             spotlight    17  716353 2.373132e-05
## 11490 Sandra Erwin               starcom    17  716353 2.373132e-05
## 11491 Sandra Erwin               stirred    17  716353 2.373132e-05
## 11492 Sandra Erwin                 storm    17  716353 2.373132e-05
## 11493 Sandra Erwin               stratfi    17  716353 2.373132e-05
## 11494 Sandra Erwin                struck    17  716353 2.373132e-05
## 11495 Sandra Erwin             struggled    17  716353 2.373132e-05
## 11496 Sandra Erwin         substantially    17  716353 2.373132e-05
## 11497 Sandra Erwin              suddenly    17  716353 2.373132e-05
## 11498 Sandra Erwin               tankers    17  716353 2.373132e-05
## 11499 Sandra Erwin              tomorrow    17  716353 2.373132e-05
## 11500 Sandra Erwin         transmissions    17  716353 2.373132e-05
## 11501 Sandra Erwin               trouble    17  716353 2.373132e-05
## 11502 Sandra Erwin            turnaround    17  716353 2.373132e-05
## 11503 Sandra Erwin                 twins    17  716353 2.373132e-05
## 11504 Sandra Erwin                  urge    17  716353 2.373132e-05
## 11505 Sandra Erwin                 urged    17  716353 2.373132e-05
## 11506 Sandra Erwin          verification    17  716353 2.373132e-05
## 11507 Sandra Erwin              wargames    17  716353 2.373132e-05
## 11508 Sandra Erwin                 women    17  716353 2.373132e-05
## 11509 Sandra Erwin             worrisome    17  716353 2.373132e-05
## 11510 Sandra Erwin                 zones    17  716353 2.373132e-05
## 11511   Jeff Foust                  33rd    16 1573821 1.016634e-05
## 11512   Jeff Foust                    4b    16 1573821 1.016634e-05
## 11513   Jeff Foust            accordance    16 1573821 1.016634e-05
## 11514   Jeff Foust          advancements    16 1573821 1.016634e-05
## 11515   Jeff Foust                  afts    16 1573821 1.016634e-05
## 11516   Jeff Foust          aggressively    16 1573821 1.016634e-05
## 11517   Jeff Foust                agrees    16 1573821 1.016634e-05
## 11518   Jeff Foust                  anne    16 1573821 1.016634e-05
## 11519   Jeff Foust               anxious    16 1573821 1.016634e-05
## 11520   Jeff Foust                 arkyd    16 1573821 1.016634e-05
## 11521   Jeff Foust                  atms    16 1573821 1.016634e-05
## 11522   Jeff Foust            attributes    16 1573821 1.016634e-05
## 11523   Jeff Foust               awesome    16 1573821 1.016634e-05
## 11524   Jeff Foust                  axis    16 1573821 1.016634e-05
## 11525   Jeff Foust           backgrounds    16 1573821 1.016634e-05
## 11526   Jeff Foust                 barge    16 1573821 1.016634e-05
## 11527   Jeff Foust         biosignatures    16 1573821 1.016634e-05
## 11528   Jeff Foust                 blank    16 1573821 1.016634e-05
## 11529   Jeff Foust            bottleneck    16 1573821 1.016634e-05
## 11530   Jeff Foust              brighter    16 1573821 1.016634e-05
## 11531   Jeff Foust              budgeted    16 1573821 1.016634e-05
## 11532   Jeff Foust          bureaucratic    16 1573821 1.016634e-05
## 11533   Jeff Foust                 butch    16 1573821 1.016634e-05
## 11534   Jeff Foust                caesar    16 1573821 1.016634e-05
## 11535   Jeff Foust                capped    16 1573821 1.016634e-05
## 11536   Jeff Foust                cardin    16 1573821 1.016634e-05
## 11537   Jeff Foust                chains    16 1573821 1.016634e-05
## 11538   Jeff Foust                  chen    16 1573821 1.016634e-05
## 11539   Jeff Foust             chronicle    16 1573821 1.016634e-05
## 11540   Jeff Foust             churyumov    16 1573821 1.016634e-05
## 11541   Jeff Foust                 chute    16 1573821 1.016634e-05
## 11542   Jeff Foust                cities    16 1573821 1.016634e-05
## 11543   Jeff Foust               clarify    16 1573821 1.016634e-05
## 11544   Jeff Foust                clears    16 1573821 1.016634e-05
## 11545   Jeff Foust                   cnn    16 1573821 1.016634e-05
## 11546   Jeff Foust                combat    16 1573821 1.016634e-05
## 11547   Jeff Foust            constraint    16 1573821 1.016634e-05
## 11548   Jeff Foust         contingencies    16 1573821 1.016634e-05
## 11549   Jeff Foust           coordinator    16 1573821 1.016634e-05
## 11550   Jeff Foust           cornerstone    16 1573821 1.016634e-05
## 11551   Jeff Foust              corroded    16 1573821 1.016634e-05
## 11552   Jeff Foust                crypto    16 1573821 1.016634e-05
## 11553   Jeff Foust              daylight    16 1573821 1.016634e-05
## 11554   Jeff Foust                    dc    16 1573821 1.016634e-05
## 11555   Jeff Foust                deaths    16 1573821 1.016634e-05
## 11556   Jeff Foust            dedication    16 1573821 1.016634e-05
## 11557   Jeff Foust         deliberations    16 1573821 1.016634e-05
## 11558   Jeff Foust             demanding    16 1573821 1.016634e-05
## 11559   Jeff Foust                 derek    16 1573821 1.016634e-05
## 11560   Jeff Foust                 deter    16 1573821 1.016634e-05
## 11561   Jeff Foust                dhawan    16 1573821 1.016634e-05
## 11562   Jeff Foust            dimensions    16 1573821 1.016634e-05
## 11563   Jeff Foust          disadvantage    16 1573821 1.016634e-05
## 11564   Jeff Foust              disagree    16 1573821 1.016634e-05
## 11565   Jeff Foust             discharge    16 1573821 1.016634e-05
## 11566   Jeff Foust              distinct    16 1573821 1.016634e-05
## 11567   Jeff Foust                  dome    16 1573821 1.016634e-05
## 11568   Jeff Foust                doomed    16 1573821 1.016634e-05
## 11569   Jeff Foust               doubted    16 1573821 1.016634e-05
## 11570   Jeff Foust               douglas    16 1573821 1.016634e-05
## 11571   Jeff Foust              downlink    16 1573821 1.016634e-05
## 11572   Jeff Foust            downselect    16 1573821 1.016634e-05
## 11573   Jeff Foust                 drama    16 1573821 1.016634e-05
## 11574   Jeff Foust          economically    16 1573821 1.016634e-05
## 11575   Jeff Foust                 ellen    16 1573821 1.016634e-05
## 11576   Jeff Foust               embrace    16 1573821 1.016634e-05
## 11577   Jeff Foust                 empty    16 1573821 1.016634e-05
## 11578   Jeff Foust               enabler    16 1573821 1.016634e-05
## 11579   Jeff Foust                entail    16 1573821 1.016634e-05
## 11580   Jeff Foust                    eo    16 1573821 1.016634e-05
## 11581   Jeff Foust           examination    16 1573821 1.016634e-05
## 11582   Jeff Foust            executable    16 1573821 1.016634e-05
## 11583   Jeff Foust             exemption    16 1573821 1.016634e-05
## 11584   Jeff Foust             exploding    16 1573821 1.016634e-05
## 11585   Jeff Foust           exponential    16 1573821 1.016634e-05
## 11586   Jeff Foust                 eytan    16 1573821 1.016634e-05
## 11587   Jeff Foust               fanfare    16 1573821 1.016634e-05
## 11588   Jeff Foust                feared    16 1573821 1.016634e-05
## 11589   Jeff Foust                 ferry    16 1573821 1.016634e-05
## 11590   Jeff Foust                 finch    16 1573821 1.016634e-05
## 11591   Jeff Foust                 flaws    16 1573821 1.016634e-05
## 11592   Jeff Foust                  flux    16 1573821 1.016634e-05
## 11593   Jeff Foust                  fold    16 1573821 1.016634e-05
## 11594   Jeff Foust                  fred    16 1573821 1.016634e-05
## 11595   Jeff Foust                fuller    16 1573821 1.016634e-05
## 11596   Jeff Foust              garriott    16 1573821 1.016634e-05
## 11597   Jeff Foust           gerasimenko    16 1573821 1.016634e-05
## 11598   Jeff Foust            ghaffarian    16 1573821 1.016634e-05
## 11599   Jeff Foust              grappled    16 1573821 1.016634e-05
## 11600   Jeff Foust             graveyard    16 1573821 1.016634e-05
## 11601   Jeff Foust                  gray    16 1573821 1.016634e-05
## 11602   Jeff Foust               hardest    16 1573821 1.016634e-05
## 11603   Jeff Foust             hardgrove    16 1573821 1.016634e-05
## 11604   Jeff Foust               harness    16 1573821 1.016634e-05
## 11605   Jeff Foust                 hawes    16 1573821 1.016634e-05
## 11606   Jeff Foust               heather    16 1573821 1.016634e-05
## 11607   Jeff Foust          heliocentric    16 1573821 1.016634e-05
## 11608   Jeff Foust               hillary    16 1573821 1.016634e-05
## 11609   Jeff Foust                holder    16 1573821 1.016634e-05
## 11610   Jeff Foust                  hong    16 1573821 1.016634e-05
## 11611   Jeff Foust              honolulu    16 1573821 1.016634e-05
## 11612   Jeff Foust            hurricanes    16 1573821 1.016634e-05
## 11613   Jeff Foust                ianson    16 1573821 1.016634e-05
## 11614   Jeff Foust               ideally    16 1573821 1.016634e-05
## 11615   Jeff Foust              improves    16 1573821 1.016634e-05
## 11616   Jeff Foust          inauguration    16 1573821 1.016634e-05
## 11617   Jeff Foust         incrementally    16 1573821 1.016634e-05
## 11618   Jeff Foust           inexpensive    16 1573821 1.016634e-05
## 11619   Jeff Foust            informally    16 1573821 1.016634e-05
## 11620   Jeff Foust        interpretation    16 1573821 1.016634e-05
## 11621   Jeff Foust            interstage    16 1573821 1.016634e-05
## 11622   Jeff Foust                 irosa    16 1573821 1.016634e-05
## 11623   Jeff Foust             isolation    16 1573821 1.016634e-05
## 11624   Jeff Foust                  isru    16 1573821 1.016634e-05
## 11625   Jeff Foust                   jah    16 1573821 1.016634e-05
## 11626   Jeff Foust                  josé    16 1573821 1.016634e-05
## 11627   Jeff Foust                judges    16 1573821 1.016634e-05
## 11628   Jeff Foust                   kay    16 1573821 1.016634e-05
## 11629   Jeff Foust                 kenny    16 1573821 1.016634e-05
## 11630   Jeff Foust                  kong    16 1573821 1.016634e-05
## 11631   Jeff Foust                    ky    16 1573821 1.016634e-05
## 11632   Jeff Foust                 lance    16 1573821 1.016634e-05
## 11633   Jeff Foust                lawyer    16 1573821 1.016634e-05
## 11634   Jeff Foust                leases    16 1573821 1.016634e-05
## 11635   Jeff Foust                 lucky    16 1573821 1.016634e-05
## 11636   Jeff Foust               mahoney    16 1573821 1.016634e-05
## 11637   Jeff Foust          maneuverable    16 1573821 1.016634e-05
## 11638   Jeff Foust              matthews    16 1573821 1.016634e-05
## 11639   Jeff Foust              mcdowell    16 1573821 1.016634e-05
## 11640   Jeff Foust             messaging    16 1573821 1.016634e-05
## 11641   Jeff Foust                 meyer    16 1573821 1.016634e-05
## 11642   Jeff Foust                milner    16 1573821 1.016634e-05
## 11643   Jeff Foust             monitored    16 1573821 1.016634e-05
## 11644   Jeff Foust            moratorium    16 1573821 1.016634e-05
## 11645   Jeff Foust                  muos    16 1573821 1.016634e-05
## 11646   Jeff Foust                 music    16 1573821 1.016634e-05
## 11647   Jeff Foust            networking    16 1573821 1.016634e-05
## 11648   Jeff Foust            objections    16 1573821 1.016634e-05
## 11649   Jeff Foust              obsolete    16 1573821 1.016634e-05
## 11650   Jeff Foust              optional    16 1573821 1.016634e-05
## 11651   Jeff Foust                   ore    16 1573821 1.016634e-05
## 11652   Jeff Foust                  otis    16 1573821 1.016634e-05
## 11653   Jeff Foust               overdue    16 1573821 1.016634e-05
## 11654   Jeff Foust                overly    16 1573821 1.016634e-05
## 11655   Jeff Foust               oversaw    16 1573821 1.016634e-05
## 11656   Jeff Foust            pappalardo    16 1573821 1.016634e-05
## 11657   Jeff Foust             parmitano    16 1573821 1.016634e-05
## 11658   Jeff Foust              patience    16 1573821 1.016634e-05
## 11659   Jeff Foust               patient    16 1573821 1.016634e-05
## 11660   Jeff Foust            pentagon’s    16 1573821 1.016634e-05
## 11661   Jeff Foust            percentage    16 1573821 1.016634e-05
## 11662   Jeff Foust              peroxide    16 1573821 1.016634e-05
## 11663   Jeff Foust         philanthropic    16 1573821 1.016634e-05
## 11664   Jeff Foust                pledge    16 1573821 1.016634e-05
## 11665   Jeff Foust                  plug    16 1573821 1.016634e-05
## 11666   Jeff Foust               podcast    16 1573821 1.016634e-05
## 11667   Jeff Foust              precious    16 1573821 1.016634e-05
## 11668   Jeff Foust             preflight    16 1573821 1.016634e-05
## 11669   Jeff Foust              premiums    16 1573821 1.016634e-05
## 11670   Jeff Foust            presidents    16 1573821 1.016634e-05
## 11671   Jeff Foust            pressurize    16 1573821 1.016634e-05
## 11672   Jeff Foust           problematic    16 1573821 1.016634e-05
## 11673   Jeff Foust               prudent    16 1573821 1.016634e-05
## 11674   Jeff Foust               pursuit    16 1573821 1.016634e-05
## 11675   Jeff Foust                 ralph    16 1573821 1.016634e-05
## 11676   Jeff Foust              rathsman    16 1573821 1.016634e-05
## 11677   Jeff Foust          refurbishing    16 1573821 1.016634e-05
## 11678   Jeff Foust            remarkably    16 1573821 1.016634e-05
## 11679   Jeff Foust                rename    16 1573821 1.016634e-05
## 11680   Jeff Foust           renegotiate    16 1573821 1.016634e-05
## 11681   Jeff Foust                  rent    16 1573821 1.016634e-05
## 11682   Jeff Foust             replicate    16 1573821 1.016634e-05
## 11683   Jeff Foust              residual    16 1573821 1.016634e-05
## 11684   Jeff Foust           restrictive    16 1573821 1.016634e-05
## 11685   Jeff Foust              revamped    16 1573821 1.016634e-05
## 11686   Jeff Foust                rivada    16 1573821 1.016634e-05
## 11687   Jeff Foust                 river    16 1573821 1.016634e-05
## 11688   Jeff Foust                 rocky    16 1573821 1.016634e-05
## 11689   Jeff Foust              rotating    16 1573821 1.016634e-05
## 11690   Jeff Foust            sacramento    16 1573821 1.016634e-05
## 11691   Jeff Foust                   sad    16 1573821 1.016634e-05
## 11692   Jeff Foust                 sandy    16 1573821 1.016634e-05
## 11693   Jeff Foust                satish    16 1573821 1.016634e-05
## 11694   Jeff Foust                 scene    16 1573821 1.016634e-05
## 11695   Jeff Foust               schmidt    16 1573821 1.016634e-05
## 11696   Jeff Foust               scolese    16 1573821 1.016634e-05
## 11697   Jeff Foust             seemingly    16 1573821 1.016634e-05
## 11698   Jeff Foust               seitzer    16 1573821 1.016634e-05
## 11699   Jeff Foust                sexual    16 1573821 1.016634e-05
## 11700   Jeff Foust               shocked    16 1573821 1.016634e-05
## 11701   Jeff Foust            signatures    16 1573821 1.016634e-05
## 11702   Jeff Foust            simulating    16 1573821 1.016634e-05
## 11703   Jeff Foust                   smd    16 1573821 1.016634e-05
## 11704   Jeff Foust                  smex    16 1573821 1.016634e-05
## 11705   Jeff Foust                   sn9    16 1573821 1.016634e-05
## 11706   Jeff Foust                soared    16 1573821 1.016634e-05
## 11707   Jeff Foust               solaero    16 1573821 1.016634e-05
## 11708   Jeff Foust         solicitations    16 1573821 1.016634e-05
## 11709   Jeff Foust              spengler    16 1573821 1.016634e-05
## 11710   Jeff Foust             splitting    16 1573821 1.016634e-05
## 11711   Jeff Foust                  spur    16 1573821 1.016634e-05
## 11712   Jeff Foust               squyres    16 1573821 1.016634e-05
## 11713   Jeff Foust               staffer    16 1573821 1.016634e-05
## 11714   Jeff Foust                staged    16 1573821 1.016634e-05
## 11715   Jeff Foust            statistics    16 1573821 1.016634e-05
## 11716   Jeff Foust             stephanie    16 1573821 1.016634e-05
## 11717   Jeff Foust               stowage    16 1573821 1.016634e-05
## 11718   Jeff Foust                streak    16 1573821 1.016634e-05
## 11719   Jeff Foust                suburb    16 1573821 1.016634e-05
## 11720   Jeff Foust            succeeding    16 1573821 1.016634e-05
## 11721   Jeff Foust           suggestions    16 1573821 1.016634e-05
## 11722   Jeff Foust                sultan    16 1573821 1.016634e-05
## 11723   Jeff Foust            supplement    16 1573821 1.016634e-05
## 11724   Jeff Foust                 susan    16 1573821 1.016634e-05
## 11725   Jeff Foust              synopsis    16 1573821 1.016634e-05
## 11726   Jeff Foust              thanking    16 1573821 1.016634e-05
## 11727   Jeff Foust          thanksgiving    16 1573821 1.016634e-05
## 11728   Jeff Foust               tourist    16 1573821 1.016634e-05
## 11729   Jeff Foust             tradition    16 1573821 1.016634e-05
## 11730   Jeff Foust        transformation    16 1573821 1.016634e-05
## 11731   Jeff Foust            translunar    16 1573821 1.016634e-05
## 11732   Jeff Foust                  uk’s    16 1573821 1.016634e-05
## 11733   Jeff Foust        underestimated    16 1573821 1.016634e-05
## 11734   Jeff Foust            underneath    16 1573821 1.016634e-05
## 11735   Jeff Foust          unexpectedly    16 1573821 1.016634e-05
## 11736   Jeff Foust         uninterrupted    16 1573821 1.016634e-05
## 11737   Jeff Foust             unplanned    16 1573821 1.016634e-05
## 11738   Jeff Foust             upgrading    16 1573821 1.016634e-05
## 11739   Jeff Foust                  usml    16 1573821 1.016634e-05
## 11740   Jeff Foust            valuations    16 1573821 1.016634e-05
## 11741   Jeff Foust           ventilators    16 1573821 1.016634e-05
## 11742   Jeff Foust              viasat’s    16 1573821 1.016634e-05
## 11743   Jeff Foust                  vsat    16 1573821 1.016634e-05
## 11744   Jeff Foust              wenchang    16 1573821 1.016634e-05
## 11745   Jeff Foust            worthwhile    16 1573821 1.016634e-05
## 11746   Jeff Foust                    wu    16 1573821 1.016634e-05
## 11747   Jeff Foust               youtube    16 1573821 1.016634e-05
## 11748 Sandra Erwin                   12u    16  716353 2.233536e-05
## 11749 Sandra Erwin                  36th    16  716353 2.233536e-05
## 11750 Sandra Erwin                  63xl    16  716353 2.233536e-05
## 11751 Sandra Erwin               absence    16  716353 2.233536e-05
## 11752 Sandra Erwin              adopting    16  716353 2.233536e-05
## 11753 Sandra Erwin               adranos    16  716353 2.233536e-05
## 11754 Sandra Erwin               affects    16  716353 2.233536e-05
## 11755 Sandra Erwin               airport    16  716353 2.233536e-05
## 11756 Sandra Erwin                alarms    16  716353 2.233536e-05
## 11757 Sandra Erwin           albuquerque    16  716353 2.233536e-05
## 11758 Sandra Erwin             anonymity    16  716353 2.233536e-05
## 11759 Sandra Erwin            applicants    16  716353 2.233536e-05
## 11760 Sandra Erwin                   ati    16  716353 2.233536e-05
## 11761 Sandra Erwin                 atk’s    16  716353 2.233536e-05
## 11762 Sandra Erwin                aurora    16  716353 2.233536e-05
## 11763 Sandra Erwin                averse    16  716353 2.233536e-05
## 11764 Sandra Erwin                 baird    16  716353 2.233536e-05
## 11765 Sandra Erwin               barrier    16  716353 2.233536e-05
## 11766 Sandra Erwin                  beat    16  716353 2.233536e-05
## 11767 Sandra Erwin                brexit    16  716353 2.233536e-05
## 11768 Sandra Erwin         bureaucracies    16  716353 2.233536e-05
## 11769 Sandra Erwin                carter    16  716353 2.233536e-05
## 11770 Sandra Erwin              chambers    16  716353 2.233536e-05
## 11771 Sandra Erwin               chances    16  716353 2.233536e-05
## 11772 Sandra Erwin                 chart    16  716353 2.233536e-05
## 11773 Sandra Erwin                  chps    16  716353 2.233536e-05
## 11774 Sandra Erwin               clinton    16  716353 2.233536e-05
## 11775 Sandra Erwin              clusters    16  716353 2.233536e-05
## 11776 Sandra Erwin              collects    16  716353 2.233536e-05
## 11777 Sandra Erwin             commanded    16  716353 2.233536e-05
## 11778 Sandra Erwin     commercialization    16  716353 2.233536e-05
## 11779 Sandra Erwin                compel    16  716353 2.233536e-05
## 11780 Sandra Erwin          conjunctions    16  716353 2.233536e-05
## 11781 Sandra Erwin               convert    16  716353 2.233536e-05
## 11782 Sandra Erwin               correct    16  716353 2.233536e-05
## 11783 Sandra Erwin             council’s    16  716353 2.233536e-05
## 11784 Sandra Erwin              crawford    16  716353 2.233536e-05
## 11785 Sandra Erwin           credibility    16  716353 2.233536e-05
## 11786 Sandra Erwin                crises    16  716353 2.233536e-05
## 11787 Sandra Erwin                   cue    16  716353 2.233536e-05
## 11788 Sandra Erwin              daunting    16  716353 2.233536e-05
## 11789 Sandra Erwin                  dead    16  716353 2.233536e-05
## 11790 Sandra Erwin              degraded    16  716353 2.233536e-05
## 11791 Sandra Erwin              delegate    16  716353 2.233536e-05
## 11792 Sandra Erwin              delivers    16  716353 2.233536e-05
## 11793 Sandra Erwin                 diego    16  716353 2.233536e-05
## 11794 Sandra Erwin             diligence    16  716353 2.233536e-05
## 11795 Sandra Erwin            distribute    16  716353 2.233536e-05
## 11796 Sandra Erwin                 dixon    16  716353 2.233536e-05
## 11797 Sandra Erwin                    dr    16  716353 2.233536e-05
## 11798 Sandra Erwin               educate    16  716353 2.233536e-05
## 11799 Sandra Erwin              election    16  716353 2.233536e-05
## 11800 Sandra Erwin           eliminating    16  716353 2.233536e-05
## 11801 Sandra Erwin           engagements    16  716353 2.233536e-05
## 11802 Sandra Erwin       entrepreneurial    16  716353 2.233536e-05
## 11803 Sandra Erwin              espastar    16  716353 2.233536e-05
## 11804 Sandra Erwin            excitement    16  716353 2.233536e-05
## 11805 Sandra Erwin               exports    16  716353 2.233536e-05
## 11806 Sandra Erwin               failing    16  716353 2.233536e-05
## 11807 Sandra Erwin             fantastic    16  716353 2.233536e-05
## 11808 Sandra Erwin           farnborough    16  716353 2.233536e-05
## 11809 Sandra Erwin               finland    16  716353 2.233536e-05
## 11810 Sandra Erwin              galactic    16  716353 2.233536e-05
## 11811 Sandra Erwin                  gary    16  716353 2.233536e-05
## 11812 Sandra Erwin           generations    16  716353 2.233536e-05
## 11813 Sandra Erwin            geographic    16  716353 2.233536e-05
## 11814 Sandra Erwin             guastella    16  716353 2.233536e-05
## 11815 Sandra Erwin                hirsch    16  716353 2.233536e-05
## 11816 Sandra Erwin                 hoene    16  716353 2.233536e-05
## 11817 Sandra Erwin                  holt    16  716353 2.233536e-05
## 11818 Sandra Erwin              huminski    16  716353 2.233536e-05
## 11819 Sandra Erwin                ignore    16  716353 2.233536e-05
## 11820 Sandra Erwin               imposed    16  716353 2.233536e-05
## 11821 Sandra Erwin              inclined    16  716353 2.233536e-05
## 11822 Sandra Erwin           institution    16  716353 2.233536e-05
## 11823 Sandra Erwin              interact    16  716353 2.233536e-05
## 11824 Sandra Erwin        investigations    16  716353 2.233536e-05
## 11825 Sandra Erwin                 juicy    16  716353 2.233536e-05
## 11826 Sandra Erwin             justified    16  716353 2.233536e-05
## 11827 Sandra Erwin              kuperman    16  716353 2.233536e-05
## 11828 Sandra Erwin               liaison    16  716353 2.233536e-05
## 11829 Sandra Erwin                  lieu    16  716353 2.233536e-05
## 11830 Sandra Erwin           materialize    16  716353 2.233536e-05
## 11831 Sandra Erwin                mccall    16  716353 2.233536e-05
## 11832 Sandra Erwin              mcdowell    16  716353 2.233536e-05
## 11833 Sandra Erwin            mechanisms    16  716353 2.233536e-05
## 11834 Sandra Erwin               melanie    16  716353 2.233536e-05
## 11835 Sandra Erwin                 merge    16  716353 2.233536e-05
## 11836 Sandra Erwin             metaverse    16  716353 2.233536e-05
## 11837 Sandra Erwin               milstar    16  716353 2.233536e-05
## 11838 Sandra Erwin                minded    16  716353 2.233536e-05
## 11839 Sandra Erwin               mmerge3    16  716353 2.233536e-05
## 11840 Sandra Erwin             movements    16  716353 2.233536e-05
## 11841 Sandra Erwin                mpower    16  716353 2.233536e-05
## 11842 Sandra Erwin               nascent    16  716353 2.233536e-05
## 11843 Sandra Erwin              nominees    16  716353 2.233536e-05
## 11844 Sandra Erwin                   npr    16  716353 2.233536e-05
## 11845 Sandra Erwin               observe    16  716353 2.233536e-05
## 11846 Sandra Erwin             parabolic    16  716353 2.233536e-05
## 11847 Sandra Erwin              performs    16  716353 2.233536e-05
## 11848 Sandra Erwin           permanently    16  716353 2.233536e-05
## 11849 Sandra Erwin               phantom    16  716353 2.233536e-05
## 11850 Sandra Erwin       phenomenologies    16  716353 2.233536e-05
## 11851 Sandra Erwin              playbook    16  716353 2.233536e-05
## 11852 Sandra Erwin               pulling    16  716353 2.233536e-05
## 11853 Sandra Erwin                puzzle    16  716353 2.233536e-05
## 11854 Sandra Erwin                   r.i    16  716353 2.233536e-05
## 11855 Sandra Erwin                 randy    16  716353 2.233536e-05
## 11856 Sandra Erwin               recruit    16  716353 2.233536e-05
## 11857 Sandra Erwin             reluctant    16  716353 2.233536e-05
## 11858 Sandra Erwin              renaming    16  716353 2.233536e-05
## 11859 Sandra Erwin          representing    16  716353 2.233536e-05
## 11860 Sandra Erwin               resides    16  716353 2.233536e-05
## 11861 Sandra Erwin                 rosen    16  716353 2.233536e-05
## 11862 Sandra Erwin                 safer    16  716353 2.233536e-05
## 11863 Sandra Erwin                  sats    16  716353 2.233536e-05
## 11864 Sandra Erwin              scalable    16  716353 2.233536e-05
## 11865 Sandra Erwin                scaled    16  716353 2.233536e-05
## 11866 Sandra Erwin              scrubbed    16  716353 2.233536e-05
## 11867 Sandra Erwin                    sd    16  716353 2.233536e-05
## 11868 Sandra Erwin           secretary’s    16  716353 2.233536e-05
## 11869 Sandra Erwin               shipped    16  716353 2.233536e-05
## 11870 Sandra Erwin                silver    16  716353 2.233536e-05
## 11871 Sandra Erwin             similarly    16  716353 2.233536e-05
## 11872 Sandra Erwin               skysats    16  716353 2.233536e-05
## 11873 Sandra Erwin                 socom    16  716353 2.233536e-05
## 11874 Sandra Erwin        specifications    16  716353 2.233536e-05
## 11875 Sandra Erwin                  spin    16  716353 2.233536e-05
## 11876 Sandra Erwin             starfleet    16  716353 2.233536e-05
## 11877 Sandra Erwin            starshield    16  716353 2.233536e-05
## 11878 Sandra Erwin              sticking    16  716353 2.233536e-05
## 11879 Sandra Erwin              stressed    16  716353 2.233536e-05
## 11880 Sandra Erwin              suitable    16  716353 2.233536e-05
## 11881 Sandra Erwin                 suite    16  716353 2.233536e-05
## 11882 Sandra Erwin            supporters    16  716353 2.233536e-05
## 11883 Sandra Erwin                   swf    16  716353 2.233536e-05
## 11884 Sandra Erwin                 tacrs    16  716353 2.233536e-05
## 11885 Sandra Erwin              takeaway    16  716353 2.233536e-05
## 11886 Sandra Erwin              telework    16  716353 2.233536e-05
## 11887 Sandra Erwin                thirds    16  716353 2.233536e-05
## 11888 Sandra Erwin             thrusters    16  716353 2.233536e-05
## 11889 Sandra Erwin                 thule    16  716353 2.233536e-05
## 11890 Sandra Erwin                   tip    16  716353 2.233536e-05
## 11891 Sandra Erwin             tolerance    16  716353 2.233536e-05
## 11892 Sandra Erwin                traded    16  716353 2.233536e-05
## 11893 Sandra Erwin              tranches    16  716353 2.233536e-05
## 11894 Sandra Erwin          unacceptable    16  716353 2.233536e-05
## 11895 Sandra Erwin            underlying    16  716353 2.233536e-05
## 11896 Sandra Erwin             universal    16  716353 2.233536e-05
## 11897 Sandra Erwin             virtually    16  716353 2.233536e-05
## 11898 Sandra Erwin                 votes    16  716353 2.233536e-05
## 11899 Sandra Erwin             wargaming    16  716353 2.233536e-05
## 11900 Sandra Erwin             waveforms    16  716353 2.233536e-05
## 11901 Sandra Erwin             whitworth    16  716353 2.233536e-05
## 11902   Jeff Foust                  14th    15 1573821 9.530944e-06
## 11903   Jeff Foust                 1950s    15 1573821 9.530944e-06
## 11904   Jeff Foust                    3b    15 1573821 9.530944e-06
## 11905   Jeff Foust                    5a    15 1573821 9.530944e-06
## 11906   Jeff Foust                    5b    15 1573821 9.530944e-06
## 11907   Jeff Foust                   67p    15 1573821 9.530944e-06
## 11908   Jeff Foust             activated    15 1573821 9.530944e-06
## 11909   Jeff Foust            adjustment    15 1573821 9.530944e-06
## 11910   Jeff Foust              aerosols    15 1573821 9.530944e-06
## 11911   Jeff Foust                ahrens    15 1573821 9.530944e-06
## 11912   Jeff Foust                 alasa    15 1573821 9.530944e-06
## 11913   Jeff Foust             alcântara    15 1573821 9.530944e-06
## 11914   Jeff Foust                  alex    15 1573821 9.530944e-06
## 11915   Jeff Foust               alleges    15 1573821 9.530944e-06
## 11916   Jeff Foust               allen’s    15 1573821 9.530944e-06
## 11917   Jeff Foust            allocating    15 1573821 9.530944e-06
## 11918   Jeff Foust               anatoly    15 1573821 9.530944e-06
## 11919   Jeff Foust                andrey    15 1573821 9.530944e-06
## 11920   Jeff Foust              andrucyk    15 1573821 9.530944e-06
## 11921   Jeff Foust                 anton    15 1573821 9.530944e-06
## 11922   Jeff Foust           appearances    15 1573821 9.530944e-06
## 11923   Jeff Foust                artist    15 1573821 9.530944e-06
## 11924   Jeff Foust             assisting    15 1573821 9.530944e-06
## 11925   Jeff Foust            assurances    15 1573821 9.530944e-06
## 11926   Jeff Foust            asteroid’s    15 1573821 9.530944e-06
## 11927   Jeff Foust                audrey    15 1573821 9.530944e-06
## 11928   Jeff Foust                avoids    15 1573821 9.530944e-06
## 11929   Jeff Foust                  bags    15 1573821 9.530944e-06
## 11930   Jeff Foust                 banks    15 1573821 9.530944e-06
## 11931   Jeff Foust            bartolomeo    15 1573821 9.530944e-06
## 11932   Jeff Foust                  bcdu    15 1573821 9.530944e-06
## 11933   Jeff Foust             believing    15 1573821 9.530944e-06
## 11934   Jeff Foust                berlin    15 1573821 9.530944e-06
## 11935   Jeff Foust                bhavya    15 1573821 9.530944e-06
## 11936   Jeff Foust               biden’s    15 1573821 9.530944e-06
## 11937   Jeff Foust               biotech    15 1573821 9.530944e-06
## 11938   Jeff Foust               blevins    15 1573821 9.530944e-06
## 11939   Jeff Foust                   bps    15 1573821 9.530944e-06
## 11940   Jeff Foust             branson’s    15 1573821 9.530944e-06
## 11941   Jeff Foust                carlos    15 1573821 9.530944e-06
## 11942   Jeff Foust                  cars    15 1573821 9.530944e-06
## 11943   Jeff Foust                carter    15 1573821 9.530944e-06
## 11944   Jeff Foust              cartosat    15 1573821 9.530944e-06
## 11945   Jeff Foust                caucus    15 1573821 9.530944e-06
## 11946   Jeff Foust              centered    15 1573821 9.530944e-06
## 11947   Jeff Foust                  cert    15 1573821 9.530944e-06
## 11948   Jeff Foust            chancellor    15 1573821 9.530944e-06
## 11949   Jeff Foust                  chao    15 1573821 9.530944e-06
## 11950   Jeff Foust        characterizing    15 1573821 9.530944e-06
## 11951   Jeff Foust                chutes    15 1573821 9.530944e-06
## 11952   Jeff Foust                city’s    15 1573821 9.530944e-06
## 11953   Jeff Foust              coherent    15 1573821 9.530944e-06
## 11954   Jeff Foust               collett    15 1573821 9.530944e-06
## 11955   Jeff Foust               commons    15 1573821 9.530944e-06
## 11956   Jeff Foust         competitively    15 1573821 9.530944e-06
## 11957   Jeff Foust            complaints    15 1573821 9.530944e-06
## 11958   Jeff Foust              comprise    15 1573821 9.530944e-06
## 11959   Jeff Foust        configurations    15 1573821 9.530944e-06
## 11960   Jeff Foust          consolidated    15 1573821 9.530944e-06
## 11961   Jeff Foust           constructed    15 1573821 9.530944e-06
## 11962   Jeff Foust           consumption    15 1573821 9.530944e-06
## 11963   Jeff Foust           contributor    15 1573821 9.530944e-06
## 11964   Jeff Foust           controlling    15 1573821 9.530944e-06
## 11965   Jeff Foust               convene    15 1573821 9.530944e-06
## 11966   Jeff Foust             crewmates    15 1573821 9.530944e-06
## 11967   Jeff Foust           declaration    15 1573821 9.530944e-06
## 11968   Jeff Foust           degradation    15 1573821 9.530944e-06
## 11969   Jeff Foust               deleted    15 1573821 9.530944e-06
## 11970   Jeff Foust         differentiate    15 1573821 9.530944e-06
## 11971   Jeff Foust             dimension    15 1573821 9.530944e-06
## 11972   Jeff Foust                   dip    15 1573821 9.530944e-06
## 11973   Jeff Foust           disarmament    15 1573821 9.530944e-06
## 11974   Jeff Foust                 disks    15 1573821 9.530944e-06
## 11975   Jeff Foust              disputes    15 1573821 9.530944e-06
## 11976   Jeff Foust            disrupting    15 1573821 9.530944e-06
## 11977   Jeff Foust                   diu    15 1573821 9.530944e-06
## 11978   Jeff Foust            division’s    15 1573821 9.530944e-06
## 11979   Jeff Foust                doable    15 1573821 9.530944e-06
## 11980   Jeff Foust               dragons    15 1573821 9.530944e-06
## 11981   Jeff Foust                  duck    15 1573821 9.530944e-06
## 11982   Jeff Foust              ecliptic    15 1573821 9.530944e-06
## 11983   Jeff Foust              embraced    15 1573821 9.530944e-06
## 11984   Jeff Foust            emphasizes    15 1573821 9.530944e-06
## 11985   Jeff Foust      entrepreneurship    15 1573821 9.530944e-06
## 11986   Jeff Foust             equitable    15 1573821 9.530944e-06
## 11987   Jeff Foust               exclude    15 1573821 9.530944e-06
## 11988   Jeff Foust            exercising    15 1573821 9.530944e-06
## 11989   Jeff Foust          expenditures    15 1573821 9.530944e-06
## 11990   Jeff Foust             explosive    15 1573821 9.530944e-06
## 11991   Jeff Foust              exposing    15 1573821 9.530944e-06
## 11992   Jeff Foust                   f9r    15 1573821 9.530944e-06
## 11993   Jeff Foust               filming    15 1573821 9.530944e-06
## 11994   Jeff Foust              flooding    15 1573821 9.530944e-06
## 11995   Jeff Foust                    fo    15 1573821 9.530944e-06
## 11996   Jeff Foust                freeze    15 1573821 9.530944e-06
## 11997   Jeff Foust             gaganyaan    15 1573821 9.530944e-06
## 11998   Jeff Foust                 gains    15 1573821 9.530944e-06
## 11999   Jeff Foust               gencorp    15 1573821 9.530944e-06
## 12000   Jeff Foust                  gene    15 1573821 9.530944e-06
## 12001   Jeff Foust            generators    15 1573821 9.530944e-06
## 12002   Jeff Foust               geology    15 1573821 9.530944e-06
## 12003   Jeff Foust                  gnss    15 1573821 9.530944e-06
## 12004   Jeff Foust                 gomap    15 1573821 9.530944e-06
## 12005   Jeff Foust              granting    15 1573821 9.530944e-06
## 12006   Jeff Foust            guarantees    15 1573821 9.530944e-06
## 12007   Jeff Foust                 habex    15 1573821 9.530944e-06
## 12008   Jeff Foust                  harp    15 1573821 9.530944e-06
## 12009   Jeff Foust           hendrickson    15 1573821 9.530944e-06
## 12010   Jeff Foust                heroes    15 1573821 9.530944e-06
## 12011   Jeff Foust          hickenlooper    15 1573821 9.530944e-06
## 12012   Jeff Foust                  hits    15 1573821 9.530944e-06
## 12013   Jeff Foust              holicity    15 1573821 9.530944e-06
## 12014   Jeff Foust                 horne    15 1573821 9.530944e-06
## 12015   Jeff Foust                hudson    15 1573821 9.530944e-06
## 12016   Jeff Foust           illustrated    15 1573821 9.530944e-06
## 12017   Jeff Foust             incumbent    15 1573821 9.530944e-06
## 12018   Jeff Foust             inspected    15 1573821 9.530944e-06
## 12019   Jeff Foust         inspirational    15 1573821 9.530944e-06
## 12020   Jeff Foust           intentional    15 1573821 9.530944e-06
## 12021   Jeff Foust           interrupted    15 1573821 9.530944e-06
## 12022   Jeff Foust            invaluable    15 1573821 9.530944e-06
## 12023   Jeff Foust                   irb    15 1573821 9.530944e-06
## 12024   Jeff Foust                jaxa’s    15 1573821 9.530944e-06
## 12025   Jeff Foust            jettisoned    15 1573821 9.530944e-06
## 12026   Jeff Foust                 kayla    15 1573821 9.530944e-06
## 12027   Jeff Foust                   kbo    15 1573821 9.530944e-06
## 12028   Jeff Foust               kundrot    15 1573821 9.530944e-06
## 12029   Jeff Foust                    la    15 1573821 9.530944e-06
## 12030   Jeff Foust                  lars    15 1573821 9.530944e-06
## 12031   Jeff Foust                laurie    15 1573821 9.530944e-06
## 12032   Jeff Foust                   lev    15 1573821 9.530944e-06
## 12033   Jeff Foust               levison    15 1573821 9.530944e-06
## 12034   Jeff Foust            lightspeed    15 1573821 9.530944e-06
## 12035   Jeff Foust               listing    15 1573821 9.530944e-06
## 12036   Jeff Foust                 loans    15 1573821 9.530944e-06
## 12037   Jeff Foust             lockdowns    15 1573821 9.530944e-06
## 12038   Jeff Foust               lowered    15 1573821 9.530944e-06
## 12039   Jeff Foust         magnetosphere    15 1573821 9.530944e-06
## 12040   Jeff Foust             mannequin    15 1573821 9.530944e-06
## 12041   Jeff Foust                 marcy    15 1573821 9.530944e-06
## 12042   Jeff Foust              margaret    15 1573821 9.530944e-06
## 12043   Jeff Foust              matching    15 1573821 9.530944e-06
## 12044   Jeff Foust              mcarthur    15 1573821 9.530944e-06
## 12045   Jeff Foust                method    15 1573821 9.530944e-06
## 12046   Jeff Foust            methodical    15 1573821 9.530944e-06
## 12047   Jeff Foust              mitchell    15 1573821 9.530944e-06
## 12048   Jeff Foust             movements    15 1573821 9.530944e-06
## 12049   Jeff Foust                   n.h    15 1573821 9.530944e-06
## 12050   Jeff Foust         nanosatellite    15 1573821 9.530944e-06
## 12051   Jeff Foust                native    15 1573821 9.530944e-06
## 12052   Jeff Foust             necessity    15 1573821 9.530944e-06
## 12053   Jeff Foust              nevada’s    15 1573821 9.530944e-06
## 12054   Jeff Foust                 nisar    15 1573821 9.530944e-06
## 12055   Jeff Foust              opposing    15 1573821 9.530944e-06
## 12056   Jeff Foust                oregon    15 1573821 9.530944e-06
## 12057   Jeff Foust              organize    15 1573821 9.530944e-06
## 12058   Jeff Foust                   ota    15 1573821 9.530944e-06
## 12059   Jeff Foust                 otter    15 1573821 9.530944e-06
## 12060   Jeff Foust          overpressure    15 1573821 9.530944e-06
## 12061   Jeff Foust               o’toole    15 1573821 9.530944e-06
## 12062   Jeff Foust                  pain    15 1573821 9.530944e-06
## 12063   Jeff Foust              particle    15 1573821 9.530944e-06
## 12064   Jeff Foust            passionate    15 1573821 9.530944e-06
## 12065   Jeff Foust              patterns    15 1573821 9.530944e-06
## 12066   Jeff Foust           perceptions    15 1573821 9.530944e-06
## 12067   Jeff Foust              peresild    15 1573821 9.530944e-06
## 12068   Jeff Foust                  pima    15 1573821 9.530944e-06
## 12069   Jeff Foust              pinpoint    15 1573821 9.530944e-06
## 12070   Jeff Foust                 pipes    15 1573821 9.530944e-06
## 12071   Jeff Foust               pitched    15 1573821 9.530944e-06
## 12072   Jeff Foust           practicable    15 1573821 9.530944e-06
## 12073   Jeff Foust             preburner    15 1573821 9.530944e-06
## 12074   Jeff Foust               premier    15 1573821 9.530944e-06
## 12075   Jeff Foust             proactive    15 1573821 9.530944e-06
## 12076   Jeff Foust           programming    15 1573821 9.530944e-06
## 12077   Jeff Foust             protested    15 1573821 9.530944e-06
## 12078   Jeff Foust           questioning    15 1573821 9.530944e-06
## 12079   Jeff Foust    radiocommunication    15 1573821 9.530944e-06
## 12080   Jeff Foust                   rbc    15 1573821 9.530944e-06
## 12081   Jeff Foust                 react    15 1573821 9.530944e-06
## 12082   Jeff Foust             realities    15 1573821 9.530944e-06
## 12083   Jeff Foust            rebuilding    15 1573821 9.530944e-06
## 12084   Jeff Foust               receipt    15 1573821 9.530944e-06
## 12085   Jeff Foust           recognizing    15 1573821 9.530944e-06
## 12086   Jeff Foust         reconsidering    15 1573821 9.530944e-06
## 12087   Jeff Foust        reestablishing    15 1573821 9.530944e-06
## 12088   Jeff Foust            referenced    15 1573821 9.530944e-06
## 12089   Jeff Foust            references    15 1573821 9.530944e-06
## 12090   Jeff Foust            reflection    15 1573821 9.530944e-06
## 12091   Jeff Foust              refueled    15 1573821 9.530944e-06
## 12092   Jeff Foust          reintroduced    15 1573821 9.530944e-06
## 12093   Jeff Foust                render    15 1573821 9.530944e-06
## 12094   Jeff Foust              reopened    15 1573821 9.530944e-06
## 12095   Jeff Foust                replan    15 1573821 9.530944e-06
## 12096   Jeff Foust             retrieved    15 1573821 9.530944e-06
## 12097   Jeff Foust               reverse    15 1573821 9.530944e-06
## 12098   Jeff Foust                 rider    15 1573821 9.530944e-06
## 12099   Jeff Foust               roberts    15 1573821 9.530944e-06
## 12100   Jeff Foust                 robyn    15 1573821 9.530944e-06
## 12101   Jeff Foust              rollback    15 1573821 9.530944e-06
## 12102   Jeff Foust                  roof    15 1573821 9.530944e-06
## 12103   Jeff Foust                 roots    15 1573821 9.530944e-06
## 12104   Jeff Foust                 rosen    15 1573821 9.530944e-06
## 12105   Jeff Foust                   rtv    15 1573821 9.530944e-06
## 12106   Jeff Foust                runner    15 1573821 9.530944e-06
## 12107   Jeff Foust                rwanda    15 1573821 9.530944e-06
## 12108   Jeff Foust                 saint    15 1573821 9.530944e-06
## 12109   Jeff Foust                scordo    15 1573821 9.530944e-06
## 12110   Jeff Foust                   sdt    15 1573821 9.530944e-06
## 12111   Jeff Foust              severity    15 1573821 9.530944e-06
## 12112   Jeff Foust              shipenko    15 1573821 9.530944e-06
## 12113   Jeff Foust                 shoot    15 1573821 9.530944e-06
## 12114   Jeff Foust              shortest    15 1573821 9.530944e-06
## 12115   Jeff Foust              sideways    15 1573821 9.530944e-06
## 12116   Jeff Foust              skipping    15 1573821 9.530944e-06
## 12117   Jeff Foust                  slim    15 1573821 9.530944e-06
## 12118   Jeff Foust                  snow    15 1573821 9.530944e-06
## 12119   Jeff Foust                   son    15 1573821 9.530944e-06
## 12120   Jeff Foust              spacebee    15 1573821 9.530944e-06
## 12121   Jeff Foust        spacelogistics    15 1573821 9.530944e-06
## 12122   Jeff Foust          sponsorships    15 1573821 9.530944e-06
## 12123   Jeff Foust                   ssb    15 1573821 9.530944e-06
## 12124   Jeff Foust                  sslv    15 1573821 9.530944e-06
## 12125   Jeff Foust               stemmed    15 1573821 9.530944e-06
## 12126   Jeff Foust         strategically    15 1573821 9.530944e-06
## 12127   Jeff Foust              stresses    15 1573821 9.530944e-06
## 12128   Jeff Foust              superior    15 1573821 9.530944e-06
## 12129   Jeff Foust               swiftly    15 1573821 9.530944e-06
## 12130   Jeff Foust                   tag    15 1573821 9.530944e-06
## 12131   Jeff Foust                  tear    15 1573821 9.530944e-06
## 12132   Jeff Foust                 tears    15 1573821 9.530944e-06
## 12133   Jeff Foust            telespazio    15 1573821 9.530944e-06
## 12134   Jeff Foust           teleworking    15 1573821 9.530944e-06
## 12135   Jeff Foust              throttle    15 1573821 9.530944e-06
## 12136   Jeff Foust                   tie    15 1573821 9.530944e-06
## 12137   Jeff Foust               tooling    15 1573821 9.530944e-06
## 12138   Jeff Foust               tracker    15 1573821 9.530944e-06
## 12139   Jeff Foust               tranche    15 1573821 9.530944e-06
## 12140   Jeff Foust             transfers    15 1573821 9.530944e-06
## 12141   Jeff Foust             transient    15 1573821 9.530944e-06
## 12142   Jeff Foust                 trash    15 1573821 9.530944e-06
## 12143   Jeff Foust              treaties    15 1573821 9.530944e-06
## 12144   Jeff Foust               trivial    15 1573821 9.530944e-06
## 12145   Jeff Foust             truncated    15 1573821 9.530944e-06
## 12146   Jeff Foust             ukraine’s    15 1573821 9.530944e-06
## 12147   Jeff Foust              ultrasat    15 1573821 9.530944e-06
## 12148   Jeff Foust             unpowered    15 1573821 9.530944e-06
## 12149   Jeff Foust              unproven    15 1573821 9.530944e-06
## 12150   Jeff Foust                unsafe    15 1573821 9.530944e-06
## 12151   Jeff Foust             unveiling    15 1573821 9.530944e-06
## 12152   Jeff Foust                 vesta    15 1573821 9.530944e-06
## 12153   Jeff Foust              veterans    15 1573821 9.530944e-06
## 12154   Jeff Foust                visors    15 1573821 9.530944e-06
## 12155   Jeff Foust               vockley    15 1573821 9.530944e-06
## 12156   Jeff Foust                 wally    15 1573821 9.530944e-06
## 12157   Jeff Foust                  weak    15 1573821 9.530944e-06
## 12158   Jeff Foust                weaver    15 1573821 9.530944e-06
## 12159   Jeff Foust                   wef    15 1573821 9.530944e-06
## 12160   Jeff Foust              wideband    15 1573821 9.530944e-06
## 12161   Jeff Foust             wildfires    15 1573821 9.530944e-06
## 12162   Jeff Foust            willoughby    15 1573821 9.530944e-06
## 12163   Jeff Foust                  wise    15 1573821 9.530944e-06
## 12164   Jeff Foust                  wore    15 1573821 9.530944e-06
## 12165   Jeff Foust                 you’d    15 1573821 9.530944e-06
## 12166   Jeff Foust                yusaku    15 1573821 9.530944e-06
## 12167 Sandra Erwin             abandoned    15  716353 2.093940e-05
## 12168 Sandra Erwin             accessing    15  716353 2.093940e-05
## 12169 Sandra Erwin             addresses    15  716353 2.093940e-05
## 12170 Sandra Erwin           aerospace’s    15  716353 2.093940e-05
## 12171 Sandra Erwin             affecting    15  716353 2.093940e-05
## 12172 Sandra Erwin               airlift    15  716353 2.093940e-05
## 12173 Sandra Erwin                 alert    15  716353 2.093940e-05
## 12174 Sandra Erwin            amendments    15  716353 2.093940e-05
## 12175 Sandra Erwin                anchor    15  716353 2.093940e-05
## 12176 Sandra Erwin               antonio    15  716353 2.093940e-05
## 12177 Sandra Erwin           articulated    15  716353 2.093940e-05
## 12178 Sandra Erwin                 aspin    15  716353 2.093940e-05
## 12179 Sandra Erwin             attracted    15  716353 2.093940e-05
## 12180 Sandra Erwin                author    15  716353 2.093940e-05
## 12181 Sandra Erwin              backbone    15  716353 2.093940e-05
## 12182 Sandra Erwin                backes    15  716353 2.093940e-05
## 12183 Sandra Erwin                  bacn    15  716353 2.093940e-05
## 12184 Sandra Erwin             batteries    15  716353 2.093940e-05
## 12185 Sandra Erwin                   bet    15  716353 2.093940e-05
## 12186 Sandra Erwin                  bias    15  716353 2.093940e-05
## 12187 Sandra Erwin              bluestaq    15  716353 2.093940e-05
## 12188 Sandra Erwin                   box    15  716353 2.093940e-05
## 12189 Sandra Erwin                 boxes    15  716353 2.093940e-05
## 12190 Sandra Erwin               buildup    15  716353 2.093940e-05
## 12191 Sandra Erwin                 byron    15  716353 2.093940e-05
## 12192 Sandra Erwin                  cast    15  716353 2.093940e-05
## 12193 Sandra Erwin               causing    15  716353 2.093940e-05
## 12194 Sandra Erwin             certainty    15  716353 2.093940e-05
## 12195 Sandra Erwin           cesiumastro    15  716353 2.093940e-05
## 12196 Sandra Erwin                  chip    15  716353 2.093940e-05
## 12197 Sandra Erwin         communicating    15  716353 2.093940e-05
## 12198 Sandra Erwin         competitively    15  716353 2.093940e-05
## 12199 Sandra Erwin              conducts    15  716353 2.093940e-05
## 12200 Sandra Erwin           contractual    15  716353 2.093940e-05
## 12201 Sandra Erwin                cradas    15  716353 2.093940e-05
## 12202 Sandra Erwin                  dana    15  716353 2.093940e-05
## 12203 Sandra Erwin           deactivated    15  716353 2.093940e-05
## 12204 Sandra Erwin                 deasy    15  716353 2.093940e-05
## 12205 Sandra Erwin            definition    15  716353 2.093940e-05
## 12206 Sandra Erwin          demonstrates    15  716353 2.093940e-05
## 12207 Sandra Erwin               deorbit    15  716353 2.093940e-05
## 12208 Sandra Erwin           determining    15  716353 2.093940e-05
## 12209 Sandra Erwin             disagrees    15  716353 2.093940e-05
## 12210 Sandra Erwin            discipline    15  716353 2.093940e-05
## 12211 Sandra Erwin               dispute    15  716353 2.093940e-05
## 12212 Sandra Erwin              distance    15  716353 2.093940e-05
## 12213 Sandra Erwin                docked    15  716353 2.093940e-05
## 12214 Sandra Erwin             enhancing    15  716353 2.093940e-05
## 12215 Sandra Erwin               equator    15  716353 2.093940e-05
## 12216 Sandra Erwin                ethics    15  716353 2.093940e-05
## 12217 Sandra Erwin              executed    15  716353 2.093940e-05
## 12218 Sandra Erwin               expires    15  716353 2.093940e-05
## 12219 Sandra Erwin             favorable    15  716353 2.093940e-05
## 12220 Sandra Erwin               favored    15  716353 2.093940e-05
## 12221 Sandra Erwin                 feeds    15  716353 2.093940e-05
## 12222 Sandra Erwin                  ford    15  716353 2.093940e-05
## 12223 Sandra Erwin              foremost    15  716353 2.093940e-05
## 12224 Sandra Erwin                geodss    15  716353 2.093940e-05
## 12225 Sandra Erwin             gradually    15  716353 2.093940e-05
## 12226 Sandra Erwin                  gray    15  716353 2.093940e-05
## 12227 Sandra Erwin                 heels    15  716353 2.093940e-05
## 12228 Sandra Erwin                here’s    15  716353 2.093940e-05
## 12229 Sandra Erwin               hoffman    15  716353 2.093940e-05
## 12230 Sandra Erwin               hopkins    15  716353 2.093940e-05
## 12231 Sandra Erwin                  hurt    15  716353 2.093940e-05
## 12232 Sandra Erwin                   ibm    15  716353 2.093940e-05
## 12233 Sandra Erwin                    ic    15  716353 2.093940e-05
## 12234 Sandra Erwin                   ice    15  716353 2.093940e-05
## 12235 Sandra Erwin           improvement    15  716353 2.093940e-05
## 12236 Sandra Erwin              incident    15  716353 2.093940e-05
## 12237 Sandra Erwin             indicator    15  716353 2.093940e-05
## 12238 Sandra Erwin            intentions    15  716353 2.093940e-05
## 12239 Sandra Erwin          intermediate    15  716353 2.093940e-05
## 12240 Sandra Erwin            ionosphere    15  716353 2.093940e-05
## 12241 Sandra Erwin                irvine    15  716353 2.093940e-05
## 12242 Sandra Erwin               islands    15  716353 2.093940e-05
## 12243 Sandra Erwin             isolation    15  716353 2.093940e-05
## 12244 Sandra Erwin               italian    15  716353 2.093940e-05
## 12245 Sandra Erwin                jackal    15  716353 2.093940e-05
## 12246 Sandra Erwin               jackson    15  716353 2.093940e-05
## 12247 Sandra Erwin              langster    15  716353 2.093940e-05
## 12248 Sandra Erwin                leosat    15  716353 2.093940e-05
## 12249 Sandra Erwin                  logo    15  716353 2.093940e-05
## 12250 Sandra Erwin             ludwigson    15  716353 2.093940e-05
## 12251 Sandra Erwin                  luno    15  716353 2.093940e-05
## 12252 Sandra Erwin             malicious    15  716353 2.093940e-05
## 12253 Sandra Erwin                manual    15  716353 2.093940e-05
## 12254 Sandra Erwin                  marc    15  716353 2.093940e-05
## 12255 Sandra Erwin               masback    15  716353 2.093940e-05
## 12256 Sandra Erwin            mclaughlin    15  716353 2.093940e-05
## 12257 Sandra Erwin              mcmillan    15  716353 2.093940e-05
## 12258 Sandra Erwin              meantime    15  716353 2.093940e-05
## 12259 Sandra Erwin                   mep    15  716353 2.093940e-05
## 12260 Sandra Erwin             messaging    15  716353 2.093940e-05
## 12261 Sandra Erwin           methodology    15  716353 2.093940e-05
## 12262 Sandra Erwin                morgan    15  716353 2.093940e-05
## 12263 Sandra Erwin                   mou    15  716353 2.093940e-05
## 12264 Sandra Erwin                  nano    15  716353 2.093940e-05
## 12265 Sandra Erwin                nelson    15  716353 2.093940e-05
## 12266 Sandra Erwin               neutral    15  716353 2.093940e-05
## 12267 Sandra Erwin                nimble    15  716353 2.093940e-05
## 12268 Sandra Erwin          notification    15  716353 2.093940e-05
## 12269 Sandra Erwin              notified    15  716353 2.093940e-05
## 12270 Sandra Erwin             obligated    15  716353 2.093940e-05
## 12271 Sandra Erwin             occurring    15  716353 2.093940e-05
## 12272 Sandra Erwin                   oco    15  716353 2.093940e-05
## 12273 Sandra Erwin             paperwork    15  716353 2.093940e-05
## 12274 Sandra Erwin               parrish    15  716353 2.093940e-05
## 12275 Sandra Erwin               passage    15  716353 2.093940e-05
## 12276 Sandra Erwin                  pats    15  716353 2.093940e-05
## 12277 Sandra Erwin               pattern    15  716353 2.093940e-05
## 12278 Sandra Erwin              payments    15  716353 2.093940e-05
## 12279 Sandra Erwin               picking    15  716353 2.093940e-05
## 12280 Sandra Erwin               pioneer    15  716353 2.093940e-05
## 12281 Sandra Erwin                 plays    15  716353 2.093940e-05
## 12282 Sandra Erwin              politico    15  716353 2.093940e-05
## 12283 Sandra Erwin         possibilities    15  716353 2.093940e-05
## 12284 Sandra Erwin             premature    15  716353 2.093940e-05
## 12285 Sandra Erwin             processor    15  716353 2.093940e-05
## 12286 Sandra Erwin            processors    15  716353 2.093940e-05
## 12287 Sandra Erwin           proposition    15  716353 2.093940e-05
## 12288 Sandra Erwin            protracted    15  716353 2.093940e-05
## 12289 Sandra Erwin               proving    15  716353 2.093940e-05
## 12290 Sandra Erwin                purely    15  716353 2.093940e-05
## 12291 Sandra Erwin              pushback    15  716353 2.093940e-05
## 12292 Sandra Erwin                quoted    15  716353 2.093940e-05
## 12293 Sandra Erwin              referred    15  716353 2.093940e-05
## 12294 Sandra Erwin                regime    15  716353 2.093940e-05
## 12295 Sandra Erwin             relocated    15  716353 2.093940e-05
## 12296 Sandra Erwin              remember    15  716353 2.093940e-05
## 12297 Sandra Erwin              removing    15  716353 2.093940e-05
## 12298 Sandra Erwin          restructured    15  716353 2.093940e-05
## 12299 Sandra Erwin            retirement    15  716353 2.093940e-05
## 12300 Sandra Erwin                  rich    15  716353 2.093940e-05
## 12301 Sandra Erwin              rigorous    15  716353 2.093940e-05
## 12302 Sandra Erwin              rockwell    15  716353 2.093940e-05
## 12303 Sandra Erwin                   rsa    15  716353 2.093940e-05
## 12304 Sandra Erwin                   saf    15  716353 2.093940e-05
## 12305 Sandra Erwin                scenes    15  716353 2.093940e-05
## 12306 Sandra Erwin                  seat    15  716353 2.093940e-05
## 12307 Sandra Erwin               seattle    15  716353 2.093940e-05
## 12308 Sandra Erwin              securely    15  716353 2.093940e-05
## 12309 Sandra Erwin                 shiny    15  716353 2.093940e-05
## 12310 Sandra Erwin               simpler    15  716353 2.093940e-05
## 12311 Sandra Erwin                sister    15  716353 2.093940e-05
## 12312 Sandra Erwin                 sizes    15  716353 2.093940e-05
## 12313 Sandra Erwin                  slip    15  716353 2.093940e-05
## 12314 Sandra Erwin                slowly    15  716353 2.093940e-05
## 12315 Sandra Erwin               space’s    15  716353 2.093940e-05
## 12316 Sandra Erwin              spectral    15  716353 2.093940e-05
## 12317 Sandra Erwin                spoken    15  716353 2.093940e-05
## 12318 Sandra Erwin                  spun    15  716353 2.093940e-05
## 12319 Sandra Erwin             stationed    15  716353 2.093940e-05
## 12320 Sandra Erwin               stealth    15  716353 2.093940e-05
## 12321 Sandra Erwin         strengthening    15  716353 2.093940e-05
## 12322 Sandra Erwin                stress    15  716353 2.093940e-05
## 12323 Sandra Erwin                strict    15  716353 2.093940e-05
## 12324 Sandra Erwin           submissions    15  716353 2.093940e-05
## 12325 Sandra Erwin            suggesting    15  716353 2.093940e-05
## 12326 Sandra Erwin             supplying    15  716353 2.093940e-05
## 12327 Sandra Erwin            synthetaic    15  716353 2.093940e-05
## 12328 Sandra Erwin             taxpayers    15  716353 2.093940e-05
## 12329 Sandra Erwin             telesat’s    15  716353 2.093940e-05
## 12330 Sandra Erwin                tether    15  716353 2.093940e-05
## 12331 Sandra Erwin                   tie    15  716353 2.093940e-05
## 12332 Sandra Erwin              traction    15  716353 2.093940e-05
## 12333 Sandra Erwin                  trek    15  716353 2.093940e-05
## 12334 Sandra Erwin                 truth    15  716353 2.093940e-05
## 12335 Sandra Erwin                   uhf    15  716353 2.093940e-05
## 12336 Sandra Erwin             ukraine’s    15  716353 2.093940e-05
## 12337 Sandra Erwin                 velos    15  716353 2.093940e-05
## 12338 Sandra Erwin             visualize    15  716353 2.093940e-05
## 12339 Sandra Erwin              watchdog    15  716353 2.093940e-05
## 12340 Sandra Erwin              watchers    15  716353 2.093940e-05
## 12341 Sandra Erwin                  wear    15  716353 2.093940e-05
## 12342 Sandra Erwin                week’s    15  716353 2.093940e-05
## 12343 Sandra Erwin                  wild    15  716353 2.093940e-05
## 12344 Sandra Erwin             workhorse    15  716353 2.093940e-05
## 12345 Sandra Erwin                 worst    15  716353 2.093940e-05
## 12346   Jeff Foust                  12th    14 1573821 8.895548e-06
## 12347   Jeff Foust                  69th    14 1573821 8.895548e-06
## 12348   Jeff Foust                   abe    14 1573821 8.895548e-06
## 12349   Jeff Foust           accumulated    14 1573821 8.895548e-06
## 12350   Jeff Foust               acierno    14 1573821 8.895548e-06
## 12351   Jeff Foust               acronym    14 1573821 8.895548e-06
## 12352   Jeff Foust            advertised    14 1573821 8.895548e-06
## 12353   Jeff Foust                  aehf    14 1573821 8.895548e-06
## 12354   Jeff Foust                alexey    14 1573821 8.895548e-06
## 12355   Jeff Foust             altimeter    14 1573821 8.895548e-06
## 12356   Jeff Foust                altius    14 1573821 8.895548e-06
## 12357   Jeff Foust            ambassador    14 1573821 8.895548e-06
## 12358   Jeff Foust             answering    14 1573821 8.895548e-06
## 12359   Jeff Foust               anthony    14 1573821 8.895548e-06
## 12360   Jeff Foust              approves    14 1573821 8.895548e-06
## 12361   Jeff Foust             arecibo’s    14 1573821 8.895548e-06
## 12362   Jeff Foust         arianespace’s    14 1573821 8.895548e-06
## 12363   Jeff Foust                  arrm    14 1573821 8.895548e-06
## 12364   Jeff Foust             artifacts    14 1573821 8.895548e-06
## 12365   Jeff Foust                 asian    14 1573821 8.895548e-06
## 12366   Jeff Foust          augmentation    14 1573821 8.895548e-06
## 12367   Jeff Foust                   awe    14 1573821 8.895548e-06
## 12368   Jeff Foust                   aws    14 1573821 8.895548e-06
## 12369   Jeff Foust                   baa    14 1573821 8.895548e-06
## 12370   Jeff Foust              backdrop    14 1573821 8.895548e-06
## 12371   Jeff Foust               backups    14 1573821 8.895548e-06
## 12372   Jeff Foust               barnawi    14 1573821 8.895548e-06
## 12373   Jeff Foust             baselines    14 1573821 8.895548e-06
## 12374   Jeff Foust             battiston    14 1573821 8.895548e-06
## 12375   Jeff Foust              benjamin    14 1573821 8.895548e-06
## 12376   Jeff Foust                  bird    14 1573821 8.895548e-06
## 12377   Jeff Foust              bolden’s    14 1573821 8.895548e-06
## 12378   Jeff Foust           bondholders    14 1573821 8.895548e-06
## 12379   Jeff Foust                 bonds    14 1573821 8.895548e-06
## 12380   Jeff Foust                bottle    14 1573821 8.895548e-06
## 12381   Jeff Foust                broker    14 1573821 8.895548e-06
## 12382   Jeff Foust              brokered    14 1573821 8.895548e-06
## 12383   Jeff Foust                  burt    14 1573821 8.895548e-06
## 12384   Jeff Foust               caching    14 1573821 8.895548e-06
## 12385   Jeff Foust                callas    14 1573821 8.895548e-06
## 12386   Jeff Foust             capturing    14 1573821 8.895548e-06
## 12387   Jeff Foust                 cares    14 1573821 8.895548e-06
## 12388   Jeff Foust                  ccsc    14 1573821 8.895548e-06
## 12389   Jeff Foust            centrifuge    14 1573821 8.895548e-06
## 12390   Jeff Foust                 cents    14 1573821 8.895548e-06
## 12391   Jeff Foust          chairmanship    14 1573821 8.895548e-06
## 12392   Jeff Foust              cheetham    14 1573821 8.895548e-06
## 12393   Jeff Foust               chicago    14 1573821 8.895548e-06
## 12394   Jeff Foust            circulated    14 1573821 8.895548e-06
## 12395   Jeff Foust               cleaned    14 1573821 8.895548e-06
## 12396   Jeff Foust               cleanup    14 1573821 8.895548e-06
## 12397   Jeff Foust                clocks    14 1573821 8.895548e-06
## 12398   Jeff Foust        collaborations    14 1573821 8.895548e-06
## 12399   Jeff Foust               compact    14 1573821 8.895548e-06
## 12400   Jeff Foust             congested    14 1573821 8.895548e-06
## 12401   Jeff Foust            containers    14 1573821 8.895548e-06
## 12402   Jeff Foust            contrasted    14 1573821 8.895548e-06
## 12403   Jeff Foust                corona    14 1573821 8.895548e-06
## 12404   Jeff Foust              corridor    14 1573821 8.895548e-06
## 12405   Jeff Foust               costing    14 1573821 8.895548e-06
## 12406   Jeff Foust                counts    14 1573821 8.895548e-06
## 12407   Jeff Foust               crafted    14 1573821 8.895548e-06
## 12408   Jeff Foust                 crane    14 1573821 8.895548e-06
## 12409   Jeff Foust                  crop    14 1573821 8.895548e-06
## 12410   Jeff Foust               crossed    14 1573821 8.895548e-06
## 12411   Jeff Foust                 crowd    14 1573821 8.895548e-06
## 12412   Jeff Foust              cultural    14 1573821 8.895548e-06
## 12413   Jeff Foust            cumberland    14 1573821 8.895548e-06
## 12414   Jeff Foust                 curry    14 1573821 8.895548e-06
## 12415   Jeff Foust              defeated    14 1573821 8.895548e-06
## 12416   Jeff Foust            deflection    14 1573821 8.895548e-06
## 12417   Jeff Foust                deimos    14 1573821 8.895548e-06
## 12418   Jeff Foust             dettwiler    14 1573821 8.895548e-06
## 12419   Jeff Foust                   dev    14 1573821 8.895548e-06
## 12420   Jeff Foust                devote    14 1573821 8.895548e-06
## 12421   Jeff Foust             differing    14 1573821 8.895548e-06
## 12422   Jeff Foust                   dim    14 1573821 8.895548e-06
## 12423   Jeff Foust             dismissal    14 1573821 8.895548e-06
## 12424   Jeff Foust              dominate    14 1573821 8.895548e-06
## 12425   Jeff Foust                drafts    14 1573821 8.895548e-06
## 12426   Jeff Foust             duplicate    14 1573821 8.895548e-06
## 12427   Jeff Foust               edition    14 1573821 8.895548e-06
## 12428   Jeff Foust               ejected    14 1573821 8.895548e-06
## 12429   Jeff Foust                elachi    14 1573821 8.895548e-06
## 12430   Jeff Foust              emeritus    14 1573821 8.895548e-06
## 12431   Jeff Foust              employed    14 1573821 8.895548e-06
## 12432   Jeff Foust              endorses    14 1573821 8.895548e-06
## 12433   Jeff Foust             energetic    14 1573821 8.895548e-06
## 12434   Jeff Foust                 enjoy    14 1573821 8.895548e-06
## 12435   Jeff Foust          enthusiastic    14 1573821 8.895548e-06
## 12436   Jeff Foust                 estée    14 1573821 8.895548e-06
## 12437   Jeff Foust             exclusion    14 1573821 8.895548e-06
## 12438   Jeff Foust                exotic    14 1573821 8.895548e-06
## 12439   Jeff Foust             factories    14 1573821 8.895548e-06
## 12440   Jeff Foust                 fence    14 1573821 8.895548e-06
## 12441   Jeff Foust                flowed    14 1573821 8.895548e-06
## 12442   Jeff Foust                 flows    14 1573821 8.895548e-06
## 12443   Jeff Foust           fortunately    14 1573821 8.895548e-06
## 12444   Jeff Foust          foundational    14 1573821 8.895548e-06
## 12445   Jeff Foust           foundations    14 1573821 8.895548e-06
## 12446   Jeff Foust                   frr    14 1573821 8.895548e-06
## 12447   Jeff Foust                 gaume    14 1573821 8.895548e-06
## 12448   Jeff Foust                 glass    14 1573821 8.895548e-06
## 12449   Jeff Foust               glonass    14 1573821 8.895548e-06
## 12450   Jeff Foust              guardian    14 1573821 8.895548e-06
## 12451   Jeff Foust                guilty    14 1573821 8.895548e-06
## 12452   Jeff Foust                  hale    14 1573821 8.895548e-06
## 12453   Jeff Foust                hansen    14 1573821 8.895548e-06
## 12454   Jeff Foust               hatches    14 1573821 8.895548e-06
## 12455   Jeff Foust             hearing’s    14 1573821 8.895548e-06
## 12456   Jeff Foust              heaviest    14 1573821 8.895548e-06
## 12457   Jeff Foust           hibernation    14 1573821 8.895548e-06
## 12458   Jeff Foust               holdren    14 1573821 8.895548e-06
## 12459   Jeff Foust            hydraulics    14 1573821 8.895548e-06
## 12460   Jeff Foust                 iai’s    14 1573821 8.895548e-06
## 12461   Jeff Foust                   iga    14 1573821 8.895548e-06
## 12462   Jeff Foust         illustrations    14 1573821 8.895548e-06
## 12463   Jeff Foust              imagined    14 1573821 8.895548e-06
## 12464   Jeff Foust           immigration    14 1573821 8.895548e-06
## 12465   Jeff Foust              impactor    14 1573821 8.895548e-06
## 12466   Jeff Foust                 inert    14 1573821 8.895548e-06
## 12467   Jeff Foust            inevitably    14 1573821 8.895548e-06
## 12468   Jeff Foust           influential    14 1573821 8.895548e-06
## 12469   Jeff Foust            injunction    14 1573821 8.895548e-06
## 12470   Jeff Foust             intending    14 1573821 8.895548e-06
## 12471   Jeff Foust     intergovernmental    14 1573821 8.895548e-06
## 12472   Jeff Foust                   irt    14 1573821 8.895548e-06
## 12473   Jeff Foust               italy’s    14 1573821 8.895548e-06
## 12474   Jeff Foust                  ivan    14 1573821 8.895548e-06
## 12475   Jeff Foust              jeanette    14 1573821 8.895548e-06
## 12476   Jeff Foust               kendall    14 1573821 8.895548e-06
## 12477   Jeff Foust                 kleos    14 1573821 8.895548e-06
## 12478   Jeff Foust                 kopra    14 1573821 8.895548e-06
## 12479   Jeff Foust              korsakov    14 1573821 8.895548e-06
## 12480   Jeff Foust             kwajalein    14 1573821 8.895548e-06
## 12481   Jeff Foust                lesser    14 1573821 8.895548e-06
## 12482   Jeff Foust             leverages    14 1573821 8.895548e-06
## 12483   Jeff Foust                 liner    14 1573821 8.895548e-06
## 12484   Jeff Foust              listings    14 1573821 8.895548e-06
## 12485   Jeff Foust                 lobby    14 1573821 8.895548e-06
## 12486   Jeff Foust              lunagrid    14 1573821 8.895548e-06
## 12487   Jeff Foust                   lux    14 1573821 8.895548e-06
## 12488   Jeff Foust                macron    14 1573821 8.895548e-06
## 12489   Jeff Foust                 magic    14 1573821 8.895548e-06
## 12490   Jeff Foust               mainzer    14 1573821 8.895548e-06
## 12491   Jeff Foust              marginal    14 1573821 8.895548e-06
## 12492   Jeff Foust                 maser    14 1573821 8.895548e-06
## 12493   Jeff Foust                  mast    14 1573821 8.895548e-06
## 12494   Jeff Foust           mastracchio    14 1573821 8.895548e-06
## 12495   Jeff Foust            mclaughlin    14 1573821 8.895548e-06
## 12496   Jeff Foust                 medal    14 1573821 8.895548e-06
## 12497   Jeff Foust              megabits    14 1573821 8.895548e-06
## 12498   Jeff Foust               melcher    14 1573821 8.895548e-06
## 12499   Jeff Foust               mexican    14 1573821 8.895548e-06
## 12500   Jeff Foust                 midst    14 1573821 8.895548e-06
## 12501   Jeff Foust               mishaps    14 1573821 8.895548e-06
## 12502   Jeff Foust                  modi    14 1573821 8.895548e-06
## 12503   Jeff Foust                  mold    14 1573821 8.895548e-06
## 12504   Jeff Foust            monumental    14 1573821 8.895548e-06
## 12505   Jeff Foust                  mood    14 1573821 8.895548e-06
## 12506   Jeff Foust              moonshot    14 1573821 8.895548e-06
## 12507   Jeff Foust                 mowry    14 1573821 8.895548e-06
## 12508   Jeff Foust          multibillion    14 1573821 8.895548e-06
## 12509   Jeff Foust         multinational    14 1573821 8.895548e-06
## 12510   Jeff Foust              narrowed    14 1573821 8.895548e-06
## 12511   Jeff Foust              narrowly    14 1573821 8.895548e-06
## 12512   Jeff Foust               nikolai    14 1573821 8.895548e-06
## 12513   Jeff Foust                nitric    14 1573821 8.895548e-06
## 12514   Jeff Foust               nitrous    14 1573821 8.895548e-06
## 12515   Jeff Foust            nominating    14 1573821 8.895548e-06
## 12516   Jeff Foust        nontraditional    14 1573821 8.895548e-06
## 12517   Jeff Foust             northwest    14 1573821 8.895548e-06
## 12518   Jeff Foust                notify    14 1573821 8.895548e-06
## 12519   Jeff Foust                  nrho    14 1573821 8.895548e-06
## 12520   Jeff Foust              observer    14 1573821 8.895548e-06
## 12521   Jeff Foust            occasional    14 1573821 8.895548e-06
## 12522   Jeff Foust             opponents    14 1573821 8.895548e-06
## 12523   Jeff Foust             ororatech    14 1573821 8.895548e-06
## 12524   Jeff Foust                   otv    14 1573821 8.895548e-06
## 12525   Jeff Foust              override    14 1573821 8.895548e-06
## 12526   Jeff Foust          overwhelming    14 1573821 8.895548e-06
## 12527   Jeff Foust        overwhelmingly    14 1573821 8.895548e-06
## 12528   Jeff Foust               pattern    14 1573821 8.895548e-06
## 12529   Jeff Foust                   pdr    14 1573821 8.895548e-06
## 12530   Jeff Foust                   pea    14 1573821 8.895548e-06
## 12531   Jeff Foust                 peace    14 1573821 8.895548e-06
## 12532   Jeff Foust             penalties    14 1573821 8.895548e-06
## 12533   Jeff Foust            permitting    14 1573821 8.895548e-06
## 12534   Jeff Foust             phosphine    14 1573821 8.895548e-06
## 12535   Jeff Foust            physically    14 1573821 8.895548e-06
## 12536   Jeff Foust             physicist    14 1573821 8.895548e-06
## 12537   Jeff Foust                 pixel    14 1573821 8.895548e-06
## 12538   Jeff Foust              planners    14 1573821 8.895548e-06
## 12539   Jeff Foust               pledged    14 1573821 8.895548e-06
## 12540   Jeff Foust                plunge    14 1573821 8.895548e-06
## 12541   Jeff Foust               pluto’s    14 1573821 8.895548e-06
## 12542   Jeff Foust              portland    14 1573821 8.895548e-06
## 12543   Jeff Foust              powering    14 1573821 8.895548e-06
## 12544   Jeff Foust           principally    14 1573821 8.895548e-06
## 12545   Jeff Foust               privman    14 1573821 8.895548e-06
## 12546   Jeff Foust            prometheus    14 1573821 8.895548e-06
## 12547   Jeff Foust                   pup    14 1573821 8.895548e-06
## 12548   Jeff Foust                purdue    14 1573821 8.895548e-06
## 12549   Jeff Foust                 purdy    14 1573821 8.895548e-06
## 12550   Jeff Foust                 purge    14 1573821 8.895548e-06
## 12551   Jeff Foust                    qs    14 1573821 8.895548e-06
## 12552   Jeff Foust                  qual    14 1573821 8.895548e-06
## 12553   Jeff Foust        qualifications    14 1573821 8.895548e-06
## 12554   Jeff Foust                ranger    14 1573821 8.895548e-06
## 12555   Jeff Foust                   raw    14 1573821 8.895548e-06
## 12556   Jeff Foust                  rear    14 1573821 8.895548e-06
## 12557   Jeff Foust          reassignment    14 1573821 8.895548e-06
## 12558   Jeff Foust             rebounded    14 1573821 8.895548e-06
## 12559   Jeff Foust             recession    14 1573821 8.895548e-06
## 12560   Jeff Foust                reddit    14 1573821 8.895548e-06
## 12561   Jeff Foust              reenters    14 1573821 8.895548e-06
## 12562   Jeff Foust            referendum    14 1573821 8.895548e-06
## 12563   Jeff Foust              reflight    14 1573821 8.895548e-06
## 12564   Jeff Foust               rejects    14 1573821 8.895548e-06
## 12565   Jeff Foust             relevance    14 1573821 8.895548e-06
## 12566   Jeff Foust              relieved    14 1573821 8.895548e-06
## 12567   Jeff Foust             reopening    14 1573821 8.895548e-06
## 12568   Jeff Foust             replenish    14 1573821 8.895548e-06
## 12569   Jeff Foust                revive    14 1573821 8.895548e-06
## 12570   Jeff Foust              ryzhikov    14 1573821 8.895548e-06
## 12571   Jeff Foust                   s.d    14 1573821 8.895548e-06
## 12572   Jeff Foust                   s.s    14 1573821 8.895548e-06
## 12573   Jeff Foust                 sabre    14 1573821 8.895548e-06
## 12574   Jeff Foust             secretive    14 1573821 8.895548e-06
## 12575   Jeff Foust                   sgt    14 1573821 8.895548e-06
## 12576   Jeff Foust                 shock    14 1573821 8.895548e-06
## 12577   Jeff Foust        specifications    14 1573821 8.895548e-06
## 12578   Jeff Foust           spectacular    14 1573821 8.895548e-06
## 12579   Jeff Foust           speculative    14 1573821 8.895548e-06
## 12580   Jeff Foust             spherical    14 1573821 8.895548e-06
## 12581   Jeff Foust                 steam    14 1573821 8.895548e-06
## 12582   Jeff Foust                 steep    14 1573821 8.895548e-06
## 12583   Jeff Foust               stewart    14 1573821 8.895548e-06
## 12584   Jeff Foust                string    14 1573821 8.895548e-06
## 12585   Jeff Foust                  subc    14 1573821 8.895548e-06
## 12586   Jeff Foust             substance    14 1573821 8.895548e-06
## 12587   Jeff Foust           supercooled    14 1573821 8.895548e-06
## 12588   Jeff Foust             supernova    14 1573821 8.895548e-06
## 12589   Jeff Foust               supreme    14 1573821 8.895548e-06
## 12590   Jeff Foust       technologically    14 1573821 8.895548e-06
## 12591   Jeff Foust             telesat’s    14 1573821 8.895548e-06
## 12592   Jeff Foust                 thick    14 1573821 8.895548e-06
## 12593   Jeff Foust                throat    14 1573821 8.895548e-06
## 12594   Jeff Foust                tissue    14 1573821 8.895548e-06
## 12595   Jeff Foust          transactions    14 1573821 8.895548e-06
## 12596   Jeff Foust      transformational    14 1573821 8.895548e-06
## 12597   Jeff Foust                trusat    14 1573821 8.895548e-06
## 12598   Jeff Foust                 truss    14 1573821 8.895548e-06
## 12599   Jeff Foust               trusted    14 1573821 8.895548e-06
## 12600   Jeff Foust                   trv    14 1573821 8.895548e-06
## 12601   Jeff Foust             undermine    14 1573821 8.895548e-06
## 12602   Jeff Foust             underwent    14 1573821 8.895548e-06
## 12603   Jeff Foust            uninvolved    14 1573821 8.895548e-06
## 12604   Jeff Foust                  univ    14 1573821 8.895548e-06
## 12605   Jeff Foust               upfront    14 1573821 8.895548e-06
## 12606   Jeff Foust                usable    14 1573821 8.895548e-06
## 12607   Jeff Foust               vantage    14 1573821 8.895548e-06
## 12608   Jeff Foust              villadei    14 1573821 8.895548e-06
## 12609   Jeff Foust                wakata    14 1573821 8.895548e-06
## 12610   Jeff Foust                walked    14 1573821 8.895548e-06
## 12611   Jeff Foust               walking    14 1573821 8.895548e-06
## 12612   Jeff Foust                 wietr    14 1573821 8.895548e-06
## 12613   Jeff Foust                  wild    14 1573821 8.895548e-06
## 12614   Jeff Foust              wingspan    14 1573821 8.895548e-06
## 12615   Jeff Foust                  worn    14 1573821 8.895548e-06
## 12616   Jeff Foust                worthy    14 1573821 8.895548e-06
## 12617   Jeff Foust                 wraps    14 1573821 8.895548e-06
## 12618   Jeff Foust                wörner    14 1573821 8.895548e-06
## 12619   Jeff Foust                  yves    14 1573821 8.895548e-06
## 12620   Jeff Foust               étienne    14 1573821 8.895548e-06
## 12621 Sandra Erwin           acknowledge    14  716353 1.954344e-05
## 12622 Sandra Erwin           adversary’s    14  716353 1.954344e-05
## 12623 Sandra Erwin              advisers    14  716353 1.954344e-05
## 12624 Sandra Erwin                 afcea    14  716353 1.954344e-05
## 12625 Sandra Erwin                   agi    14  716353 1.954344e-05
## 12626 Sandra Erwin                  aide    14  716353 1.954344e-05
## 12627 Sandra Erwin              airlines    14  716353 1.954344e-05
## 12628 Sandra Erwin              alarming    14  716353 1.954344e-05
## 12629 Sandra Erwin               alleged    14  716353 1.954344e-05
## 12630 Sandra Erwin               anytime    14  716353 1.954344e-05
## 12631 Sandra Erwin             appealing    14  716353 1.954344e-05
## 12632 Sandra Erwin               arabsat    14  716353 1.954344e-05
## 12633 Sandra Erwin                 arrow    14  716353 1.954344e-05
## 12634 Sandra Erwin             attribute    14  716353 1.954344e-05
## 12635 Sandra Erwin                 avert    14  716353 1.954344e-05
## 12636 Sandra Erwin           backgrounds    14  716353 1.954344e-05
## 12637 Sandra Erwin             banazadeh    14  716353 1.954344e-05
## 12638 Sandra Erwin                beacon    14  716353 1.954344e-05
## 12639 Sandra Erwin               bellamy    14  716353 1.954344e-05
## 12640 Sandra Erwin             bernstein    14  716353 1.954344e-05
## 12641 Sandra Erwin                 blame    14  716353 1.954344e-05
## 12642 Sandra Erwin                boards    14  716353 1.954344e-05
## 12643 Sandra Erwin                bogged    14  716353 1.954344e-05
## 12644 Sandra Erwin                 burns    14  716353 1.954344e-05
## 12645 Sandra Erwin                  capt    14  716353 1.954344e-05
## 12646 Sandra Erwin               changer    14  716353 1.954344e-05
## 12647 Sandra Erwin                 clock    14  716353 1.954344e-05
## 12648 Sandra Erwin               cluster    14  716353 1.954344e-05
## 12649 Sandra Erwin               cockpit    14  716353 1.954344e-05
## 12650 Sandra Erwin          commission’s    14  716353 1.954344e-05
## 12651 Sandra Erwin           commitments    14  716353 1.954344e-05
## 12652 Sandra Erwin           commodities    14  716353 1.954344e-05
## 12653 Sandra Erwin          communicated    14  716353 1.954344e-05
## 12654 Sandra Erwin       competitiveness    14  716353 1.954344e-05
## 12655 Sandra Erwin             composite    14  716353 1.954344e-05
## 12656 Sandra Erwin          considerably    14  716353 1.954344e-05
## 12657 Sandra Erwin          consistently    14  716353 1.954344e-05
## 12658 Sandra Erwin            contenders    14  716353 1.954344e-05
## 12659 Sandra Erwin            contracted    14  716353 1.954344e-05
## 12660 Sandra Erwin           controversy    14  716353 1.954344e-05
## 12661 Sandra Erwin             cooperate    14  716353 1.954344e-05
## 12662 Sandra Erwin               counsel    14  716353 1.954344e-05
## 12663 Sandra Erwin                   cpi    14  716353 1.954344e-05
## 12664 Sandra Erwin                dakota    14  716353 1.954344e-05
## 12665 Sandra Erwin            delegation    14  716353 1.954344e-05
## 12666 Sandra Erwin                dennis    14  716353 1.954344e-05
## 12667 Sandra Erwin             deterring    14  716353 1.954344e-05
## 12668 Sandra Erwin           devastating    14  716353 1.954344e-05
## 12669 Sandra Erwin               dictate    14  716353 1.954344e-05
## 12670 Sandra Erwin               display    14  716353 1.954344e-05
## 12671 Sandra Erwin            disrupting    14  716353 1.954344e-05
## 12672 Sandra Erwin           duplicative    14  716353 1.954344e-05
## 12673 Sandra Erwin               emerson    14  716353 1.954344e-05
## 12674 Sandra Erwin            emphasizes    14  716353 1.954344e-05
## 12675 Sandra Erwin            employment    14  716353 1.954344e-05
## 12676 Sandra Erwin               employs    14  716353 1.954344e-05
## 12677 Sandra Erwin            escalating    14  716353 1.954344e-05
## 12678 Sandra Erwin               evening    14  716353 1.954344e-05
## 12679 Sandra Erwin             expecting    14  716353 1.954344e-05
## 12680 Sandra Erwin            explaining    14  716353 1.954344e-05
## 12681 Sandra Erwin               express    14  716353 1.954344e-05
## 12682 Sandra Erwin              external    14  716353 1.954344e-05
## 12683 Sandra Erwin             factories    14  716353 1.954344e-05
## 12684 Sandra Erwin               fashion    14  716353 1.954344e-05
## 12685 Sandra Erwin            federation    14  716353 1.954344e-05
## 12686 Sandra Erwin                  feed    14  716353 1.954344e-05
## 12687 Sandra Erwin                 feels    14  716353 1.954344e-05
## 12688 Sandra Erwin                 fiber    14  716353 1.954344e-05
## 12689 Sandra Erwin              finished    14  716353 1.954344e-05
## 12690 Sandra Erwin               fishing    14  716353 1.954344e-05
## 12691 Sandra Erwin                 focal    14  716353 1.954344e-05
## 12692 Sandra Erwin              frontier    14  716353 1.954344e-05
## 12693 Sandra Erwin                garcia    14  716353 1.954344e-05
## 12694 Sandra Erwin             generates    14  716353 1.954344e-05
## 12695 Sandra Erwin                 guess    14  716353 1.954344e-05
## 12696 Sandra Erwin               harness    14  716353 1.954344e-05
## 12697 Sandra Erwin                 henry    14  716353 1.954344e-05
## 12698 Sandra Erwin               herndon    14  716353 1.954344e-05
## 12699 Sandra Erwin                 hoped    14  716353 1.954344e-05
## 12700 Sandra Erwin                 hough    14  716353 1.954344e-05
## 12701 Sandra Erwin                 iarpa    14  716353 1.954344e-05
## 12702 Sandra Erwin          inconsistent    14  716353 1.954344e-05
## 12703 Sandra Erwin             inflation    14  716353 1.954344e-05
## 12704 Sandra Erwin               iranian    14  716353 1.954344e-05
## 12705 Sandra Erwin              jennifer    14  716353 1.954344e-05
## 12706 Sandra Erwin              jonathan    14  716353 1.954344e-05
## 12707 Sandra Erwin                   jtf    14  716353 1.954344e-05
## 12708 Sandra Erwin                justin    14  716353 1.954344e-05
## 12709 Sandra Erwin                kamala    14  716353 1.954344e-05
## 12710 Sandra Erwin             kendall’s    14  716353 1.954344e-05
## 12711 Sandra Erwin                  kick    14  716353 1.954344e-05
## 12712 Sandra Erwin                knight    14  716353 1.954344e-05
## 12713 Sandra Erwin                  kuta    14  716353 1.954344e-05
## 12714 Sandra Erwin                   l1c    14  716353 1.954344e-05
## 12715 Sandra Erwin               lawsuit    14  716353 1.954344e-05
## 12716 Sandra Erwin                  leap    14  716353 1.954344e-05
## 12717 Sandra Erwin                length    14  716353 1.954344e-05
## 12718 Sandra Erwin             leverages    14  716353 1.954344e-05
## 12719 Sandra Erwin              lifetime    14  716353 1.954344e-05
## 12720 Sandra Erwin                  limp    14  716353 1.954344e-05
## 12721 Sandra Erwin                 loral    14  716353 1.954344e-05
## 12722 Sandra Erwin             maintains    14  716353 1.954344e-05
## 12723 Sandra Erwin          maneuverable    14  716353 1.954344e-05
## 12724 Sandra Erwin              mastalir    14  716353 1.954344e-05
## 12725 Sandra Erwin               matthew    14  716353 1.954344e-05
## 12726 Sandra Erwin            maturation    14  716353 1.954344e-05
## 12727 Sandra Erwin                 mda’s    14  716353 1.954344e-05
## 12728 Sandra Erwin              mentions    14  716353 1.954344e-05
## 12729 Sandra Erwin               merging    14  716353 1.954344e-05
## 12730 Sandra Erwin                merits    14  716353 1.954344e-05
## 12731 Sandra Erwin                meters    14  716353 1.954344e-05
## 12732 Sandra Erwin      microelectronics    14  716353 1.954344e-05
## 12733 Sandra Erwin              minister    14  716353 1.954344e-05
## 12734 Sandra Erwin                   mit    14  716353 1.954344e-05
## 12735 Sandra Erwin                    mq    14  716353 1.954344e-05
## 12736 Sandra Erwin               mulcahy    14  716353 1.954344e-05
## 12737 Sandra Erwin                 nasic    14  716353 1.954344e-05
## 12738 Sandra Erwin           nonetheless    14  716353 1.954344e-05
## 12739 Sandra Erwin                  osam    14  716353 1.954344e-05
## 12740 Sandra Erwin               outlook    14  716353 1.954344e-05
## 12741 Sandra Erwin           overlapping    14  716353 1.954344e-05
## 12742 Sandra Erwin                 owner    14  716353 1.954344e-05
## 12743 Sandra Erwin              paradigm    14  716353 1.954344e-05
## 12744 Sandra Erwin               parrott    14  716353 1.954344e-05
## 12745 Sandra Erwin             peacetime    14  716353 1.954344e-05
## 12746 Sandra Erwin                   peo    14  716353 1.954344e-05
## 12747 Sandra Erwin                  peru    14  716353 1.954344e-05
## 12748 Sandra Erwin         phenomenology    14  716353 1.954344e-05
## 12749 Sandra Erwin            predictive    14  716353 1.954344e-05
## 12750 Sandra Erwin                prefer    14  716353 1.954344e-05
## 12751 Sandra Erwin            proceeding    14  716353 1.954344e-05
## 12752 Sandra Erwin            projection    14  716353 1.954344e-05
## 12753 Sandra Erwin           proliferate    14  716353 1.954344e-05
## 12754 Sandra Erwin             prominent    14  716353 1.954344e-05
## 12755 Sandra Erwin                 rafti    14  716353 1.954344e-05
## 12756 Sandra Erwin            reassigned    14  716353 1.954344e-05
## 12757 Sandra Erwin            reconsider    14  716353 1.954344e-05
## 12758 Sandra Erwin               records    14  716353 1.954344e-05
## 12759 Sandra Erwin               reduces    14  716353 1.954344e-05
## 12760 Sandra Erwin            redundancy    14  716353 1.954344e-05
## 12761 Sandra Erwin             redundant    14  716353 1.954344e-05
## 12762 Sandra Erwin           refurbished    14  716353 1.954344e-05
## 12763 Sandra Erwin             relevance    14  716353 1.954344e-05
## 12764 Sandra Erwin              reminded    14  716353 1.954344e-05
## 12765 Sandra Erwin              reminder    14  716353 1.954344e-05
## 12766 Sandra Erwin                rename    14  716353 1.954344e-05
## 12767 Sandra Erwin              reporter    14  716353 1.954344e-05
## 12768 Sandra Erwin              resident    14  716353 1.954344e-05
## 12769 Sandra Erwin               restore    14  716353 1.954344e-05
## 12770 Sandra Erwin         restructuring    14  716353 1.954344e-05
## 12771 Sandra Erwin            rideshares    14  716353 1.954344e-05
## 12772 Sandra Erwin                    rl    14  716353 1.954344e-05
## 12773 Sandra Erwin                 rough    14  716353 1.954344e-05
## 12774 Sandra Erwin                runway    14  716353 1.954344e-05
## 12775 Sandra Erwin                 sands    14  716353 1.954344e-05
## 12776 Sandra Erwin                    se    14  716353 1.954344e-05
## 12777 Sandra Erwin               setback    14  716353 1.954344e-05
## 12778 Sandra Erwin                settle    14  716353 1.954344e-05
## 12779 Sandra Erwin             shouldn’t    14  716353 1.954344e-05
## 12780 Sandra Erwin            simulators    14  716353 1.954344e-05
## 12781 Sandra Erwin                  sits    14  716353 1.954344e-05
## 12782 Sandra Erwin               slowing    14  716353 1.954344e-05
## 12783 Sandra Erwin                  soft    14  716353 1.954344e-05
## 12784 Sandra Erwin             solicited    14  716353 1.954344e-05
## 12785 Sandra Erwin                 sorts    14  716353 1.954344e-05
## 12786 Sandra Erwin             speculate    14  716353 1.954344e-05
## 12787 Sandra Erwin               spencer    14  716353 1.954344e-05
## 12788 Sandra Erwin              staffing    14  716353 1.954344e-05
## 12789 Sandra Erwin               staunch    14  716353 1.954344e-05
## 12790 Sandra Erwin               staying    14  716353 1.954344e-05
## 12791 Sandra Erwin              stefanek    14  716353 1.954344e-05
## 12792 Sandra Erwin              stimulus    14  716353 1.954344e-05
## 12793 Sandra Erwin                stream    14  716353 1.954344e-05
## 12794 Sandra Erwin                  stss    14  716353 1.954344e-05
## 12795 Sandra Erwin                  sttr    14  716353 1.954344e-05
## 12796 Sandra Erwin        subcommittee’s    14  716353 1.954344e-05
## 12797 Sandra Erwin             supporter    14  716353 1.954344e-05
## 12798 Sandra Erwin               taiclet    14  716353 1.954344e-05
## 12799 Sandra Erwin               telecom    14  716353 1.954344e-05
## 12800 Sandra Erwin           temperature    14  716353 1.954344e-05
## 12801 Sandra Erwin                 tesat    14  716353 1.954344e-05
## 12802 Sandra Erwin                  tile    14  716353 1.954344e-05
## 12803 Sandra Erwin             tradeoffs    14  716353 1.954344e-05
## 12804 Sandra Erwin            unexpected    14  716353 1.954344e-05
## 12805 Sandra Erwin              uniquely    14  716353 1.954344e-05
## 12806 Sandra Erwin          university’s    14  716353 1.954344e-05
## 12807 Sandra Erwin         unpredictable    14  716353 1.954344e-05
## 12808 Sandra Erwin                 urges    14  716353 1.954344e-05
## 12809 Sandra Erwin            usspacecom    14  716353 1.954344e-05
## 12810 Sandra Erwin                    vc    14  716353 1.954344e-05
## 12811 Sandra Erwin             viability    14  716353 1.954344e-05
## 12812 Sandra Erwin                virtue    14  716353 1.954344e-05
## 12813 Sandra Erwin         visualization    14  716353 1.954344e-05
## 12814 Sandra Erwin                waiver    14  716353 1.954344e-05
## 12815 Sandra Erwin                 waste    14  716353 1.954344e-05
## 12816 Sandra Erwin               weren’t    14  716353 1.954344e-05
## 12817 Sandra Erwin             witnesses    14  716353 1.954344e-05
## 12818 Sandra Erwin                writes    14  716353 1.954344e-05
## 12819 Sandra Erwin                    xl    14  716353 1.954344e-05
## 12820 Sandra Erwin                york’s    14  716353 1.954344e-05
## 12821   Jeff Foust                    0a    13 1573821 8.260152e-06
## 12822   Jeff Foust                  15th    13 1573821 8.260152e-06
## 12823   Jeff Foust                  23rd    13 1573821 8.260152e-06
## 12824   Jeff Foust                    2f    13 1573821 8.260152e-06
## 12825   Jeff Foust                  68th    13 1573821 8.260152e-06
## 12826   Jeff Foust                  72nd    13 1573821 8.260152e-06
## 12827   Jeff Foust                absorb    13 1573821 8.260152e-06
## 12828   Jeff Foust         accomplishing    13 1573821 8.260152e-06
## 12829   Jeff Foust                adhere    13 1573821 8.260152e-06
## 12830   Jeff Foust        administrators    13 1573821 8.260152e-06
## 12831   Jeff Foust                 afoul    13 1573821 8.260152e-06
## 12832   Jeff Foust             aggregate    13 1573821 8.260152e-06
## 12833   Jeff Foust                 aimed    13 1573821 8.260152e-06
## 12834   Jeff Foust                airmen    13 1573821 8.260152e-06
## 12835   Jeff Foust               alarmed    13 1573821 8.260152e-06
## 12836   Jeff Foust            algorithms    13 1573821 8.260152e-06
## 12837   Jeff Foust              aligning    13 1573821 8.260152e-06
## 12838   Jeff Foust                allied    13 1573821 8.260152e-06
## 12839   Jeff Foust                 altan    13 1573821 8.260152e-06
## 12840   Jeff Foust               ambient    13 1573821 8.260152e-06
## 12841   Jeff Foust                   ami    13 1573821 8.260152e-06
## 12842   Jeff Foust                   amy    13 1573821 8.260152e-06
## 12843   Jeff Foust                andøya    13 1573821 8.260152e-06
## 12844   Jeff Foust                angela    13 1573821 8.260152e-06
## 12845   Jeff Foust              applause    13 1573821 8.260152e-06
## 12846   Jeff Foust                  arca    13 1573821 8.260152e-06
## 12847   Jeff Foust               archive    13 1573821 8.260152e-06
## 12848   Jeff Foust             argentina    13 1573821 8.260152e-06
## 12849   Jeff Foust                 argos    13 1573821 8.260152e-06
## 12850   Jeff Foust              arrested    13 1573821 8.260152e-06
## 12851   Jeff Foust                 asats    13 1573821 8.260152e-06
## 12852   Jeff Foust                   asd    13 1573821 8.260152e-06
## 12853   Jeff Foust             attaching    13 1573821 8.260152e-06
## 12854   Jeff Foust              attendee    13 1573821 8.260152e-06
## 12855   Jeff Foust                  audi    13 1573821 8.260152e-06
## 12856   Jeff Foust                 audio    13 1573821 8.260152e-06
## 12857   Jeff Foust                 auñón    13 1573821 8.260152e-06
## 12858   Jeff Foust                  aviv    13 1573821 8.260152e-06
## 12859   Jeff Foust                awaits    13 1573821 8.260152e-06
## 12860   Jeff Foust                  bain    13 1573821 8.260152e-06
## 12861   Jeff Foust                  baja    13 1573821 8.260152e-06
## 12862   Jeff Foust              bankrupt    13 1573821 8.260152e-06
## 12863   Jeff Foust              baptiste    13 1573821 8.260152e-06
## 12864   Jeff Foust                 barna    13 1573821 8.260152e-06
## 12865   Jeff Foust              bleacher    13 1573821 8.260152e-06
## 12866   Jeff Foust                   boe    13 1573821 8.260152e-06
## 12867   Jeff Foust                 bolts    13 1573821 8.260152e-06
## 12868   Jeff Foust               booking    13 1573821 8.260152e-06
## 12869   Jeff Foust             breakfast    13 1573821 8.260152e-06
## 12870   Jeff Foust                 brett    13 1573821 8.260152e-06
## 12871   Jeff Foust               broaden    13 1573821 8.260152e-06
## 12872   Jeff Foust               burdens    13 1573821 8.260152e-06
## 12873   Jeff Foust                 buzza    13 1573821 8.260152e-06
## 12874   Jeff Foust                    c3    13 1573821 8.260152e-06
## 12875   Jeff Foust                 cards    13 1573821 8.260152e-06
## 12876   Jeff Foust              catching    13 1573821 8.260152e-06
## 12877   Jeff Foust              cauffman    13 1573821 8.260152e-06
## 12878   Jeff Foust            celebrated    13 1573821 8.260152e-06
## 12879   Jeff Foust            centennial    13 1573821 8.260152e-06
## 12880   Jeff Foust            centimeter    13 1573821 8.260152e-06
## 12881   Jeff Foust              checking    13 1573821 8.260152e-06
## 12882   Jeff Foust                  chip    13 1573821 8.260152e-06
## 12883   Jeff Foust               circuit    13 1573821 8.260152e-06
## 12884   Jeff Foust             clarified    13 1573821 8.260152e-06
## 12885   Jeff Foust            combinator    13 1573821 8.260152e-06
## 12886   Jeff Foust            commerce’s    13 1573821 8.260152e-06
## 12887   Jeff Foust           complaining    13 1573821 8.260152e-06
## 12888   Jeff Foust            complicate    13 1573821 8.260152e-06
## 12889   Jeff Foust             concurred    13 1573821 8.260152e-06
## 12890   Jeff Foust          conference’s    13 1573821 8.260152e-06
## 12891   Jeff Foust             connector    13 1573821 8.260152e-06
## 12892   Jeff Foust          constitution    13 1573821 8.260152e-06
## 12893   Jeff Foust          constructing    13 1573821 8.260152e-06
## 12894   Jeff Foust               consult    13 1573821 8.260152e-06
## 12895   Jeff Foust            contention    13 1573821 8.260152e-06
## 12896   Jeff Foust              costello    13 1573821 8.260152e-06
## 12897   Jeff Foust             cuberover    13 1573821 8.260152e-06
## 12898   Jeff Foust                dabbar    13 1573821 8.260152e-06
## 12899   Jeff Foust              daughter    13 1573821 8.260152e-06
## 12900   Jeff Foust               default    13 1573821 8.260152e-06
## 12901   Jeff Foust             desautels    13 1573821 8.260152e-06
## 12902   Jeff Foust              diagnose    13 1573821 8.260152e-06
## 12903   Jeff Foust                  dips    13 1573821 8.260152e-06
## 12904   Jeff Foust            dispensers    13 1573821 8.260152e-06
## 12905   Jeff Foust             disposing    13 1573821 8.260152e-06
## 12906   Jeff Foust                dmitri    13 1573821 8.260152e-06
## 12907   Jeff Foust               domains    13 1573821 8.260152e-06
## 12908   Jeff Foust                   dst    13 1573821 8.260152e-06
## 12909   Jeff Foust                 dylan    13 1573821 8.260152e-06
## 12910   Jeff Foust             earmarked    13 1573821 8.260152e-06
## 12911   Jeff Foust               earnest    13 1573821 8.260152e-06
## 12912   Jeff Foust               eclipse    13 1573821 8.260152e-06
## 12913   Jeff Foust               elysium    13 1573821 8.260152e-06
## 12914   Jeff Foust              emiliano    13 1573821 8.260152e-06
## 12915   Jeff Foust            encryption    13 1573821 8.260152e-06
## 12916   Jeff Foust              enriched    13 1573821 8.260152e-06
## 12917   Jeff Foust       environmentally    13 1573821 8.260152e-06
## 12918   Jeff Foust                   esm    13 1573821 8.260152e-06
## 12919   Jeff Foust                   eta    13 1573821 8.260152e-06
## 12920   Jeff Foust           everybody’s    13 1573821 8.260152e-06
## 12921   Jeff Foust             exchanged    13 1573821 8.260152e-06
## 12922   Jeff Foust              executed    13 1573821 8.260152e-06
## 12923   Jeff Foust               exiting    13 1573821 8.260152e-06
## 12924   Jeff Foust              expended    13 1573821 8.260152e-06
## 12925   Jeff Foust                expose    13 1573821 8.260152e-06
## 12926   Jeff Foust              factored    13 1573821 8.260152e-06
## 12927   Jeff Foust                 fatih    13 1573821 8.260152e-06
## 12928   Jeff Foust                  ffpa    13 1573821 8.260152e-06
## 12929   Jeff Foust                fibers    13 1573821 8.260152e-06
## 12930   Jeff Foust            flawlessly    13 1573821 8.260152e-06
## 12931   Jeff Foust              france’s    13 1573821 8.260152e-06
## 12932   Jeff Foust              fruition    13 1573821 8.260152e-06
## 12933   Jeff Foust           frustrating    13 1573821 8.260152e-06
## 12934   Jeff Foust            fulfilling    13 1573821 8.260152e-06
## 12935   Jeff Foust              ganymede    13 1573821 8.260152e-06
## 12936   Jeff Foust              gateways    13 1573821 8.260152e-06
## 12937   Jeff Foust               gedmark    13 1573821 8.260152e-06
## 12938   Jeff Foust                gender    13 1573821 8.260152e-06
## 12939   Jeff Foust            geographic    13 1573821 8.260152e-06
## 12940   Jeff Foust                geoint    13 1573821 8.260152e-06
## 12941   Jeff Foust        gerstenmaier’s    13 1573821 8.260152e-06
## 12942   Jeff Foust              gonzales    13 1573821 8.260152e-06
## 12943   Jeff Foust             goonhilly    13 1573821 8.260152e-06
## 12944   Jeff Foust              graduate    13 1573821 8.260152e-06
## 12945   Jeff Foust           groundbased    13 1573821 8.260152e-06
## 12946   Jeff Foust                   gto    13 1573821 8.260152e-06
## 12947   Jeff Foust             hammering    13 1573821 8.260152e-06
## 12948   Jeff Foust               harvard    13 1573821 8.260152e-06
## 12949   Jeff Foust              hawaiian    13 1573821 8.260152e-06
## 12950   Jeff Foust               heaters    13 1573821 8.260152e-06
## 12951   Jeff Foust                  hero    13 1573821 8.260152e-06
## 12952   Jeff Foust                   heu    13 1573821 8.260152e-06
## 12953   Jeff Foust              holistic    13 1573821 8.260152e-06
## 12954   Jeff Foust                  hops    13 1573821 8.260152e-06
## 12955   Jeff Foust             humankind    13 1573821 8.260152e-06
## 12956   Jeff Foust                 hyper    13 1573821 8.260152e-06
## 12957   Jeff Foust           illustrates    13 1573821 8.260152e-06
## 12958   Jeff Foust         incorporation    13 1573821 8.260152e-06
## 12959   Jeff Foust             initiated    13 1573821 8.260152e-06
## 12960   Jeff Foust                inputs    13 1573821 8.260152e-06
## 12961   Jeff Foust               insider    13 1573821 8.260152e-06
## 12962   Jeff Foust            insprucker    13 1573821 8.260152e-06
## 12963   Jeff Foust           instability    13 1573821 8.260152e-06
## 12964   Jeff Foust            instructor    13 1573821 8.260152e-06
## 12965   Jeff Foust          instrumental    13 1573821 8.260152e-06
## 12966   Jeff Foust           interfering    13 1573821 8.260152e-06
## 12967   Jeff Foust                isro’s    13 1573821 8.260152e-06
## 12968   Jeff Foust                 jcsat    13 1573821 8.260152e-06
## 12969   Jeff Foust               jiuquan    13 1573821 8.260152e-06
## 12970   Jeff Foust                 jpl’s    13 1573821 8.260152e-06
## 12971   Jeff Foust                kapton    13 1573821 8.260152e-06
## 12972   Jeff Foust               kicking    13 1573821 8.260152e-06
## 12973   Jeff Foust                koichi    13 1573821 8.260152e-06
## 12974   Jeff Foust             kononenko    13 1573821 8.260152e-06
## 12975   Jeff Foust                  krag    13 1573821 8.260152e-06
## 12976   Jeff Foust                 krein    13 1573821 8.260152e-06
## 12977   Jeff Foust          laboratories    13 1573821 8.260152e-06
## 12978   Jeff Foust                lauder    13 1573821 8.260152e-06
## 12979   Jeff Foust                lesson    13 1573821 8.260152e-06
## 12980   Jeff Foust             leveraged    13 1573821 8.260152e-06
## 12981   Jeff Foust               liaison    13 1573821 8.260152e-06
## 12982   Jeff Foust               liberty    13 1573821 8.260152e-06
## 12983   Jeff Foust             lingering    13 1573821 8.260152e-06
## 12984   Jeff Foust            litigation    13 1573821 8.260152e-06
## 12985   Jeff Foust            logistical    13 1573821 8.260152e-06
## 12986   Jeff Foust             louisiana    13 1573821 8.260152e-06
## 12987   Jeff Foust                   lsp    13 1573821 8.260152e-06
## 12988   Jeff Foust                    m2    13 1573821 8.260152e-06
## 12989   Jeff Foust                  maia    13 1573821 8.260152e-06
## 12990   Jeff Foust                  mail    13 1573821 8.260152e-06
## 12991   Jeff Foust              mashable    13 1573821 8.260152e-06
## 12992   Jeff Foust               matured    13 1573821 8.260152e-06
## 12993   Jeff Foust                 mda’s    13 1573821 8.260152e-06
## 12994   Jeff Foust               melissa    13 1573821 8.260152e-06
## 12995   Jeff Foust              meteosat    13 1573821 8.260152e-06
## 12996   Jeff Foust              microbes    13 1573821 8.260152e-06
## 12997   Jeff Foust        microlaunchers    13 1573821 8.260152e-06
## 12998   Jeff Foust             minimizes    13 1573821 8.260152e-06
## 12999   Jeff Foust              monolith    13 1573821 8.260152e-06
## 13000   Jeff Foust               motions    13 1573821 8.260152e-06
## 13001   Jeff Foust               mystery    13 1573821 8.260152e-06
## 13002   Jeff Foust                nathan    13 1573821 8.260152e-06
## 13003   Jeff Foust              nebraska    13 1573821 8.260152e-06
## 13004   Jeff Foust                newsat    13 1573821 8.260152e-06
## 13005   Jeff Foust                newton    13 1573821 8.260152e-06
## 13006   Jeff Foust            newtonfour    13 1573821 8.260152e-06
## 13007   Jeff Foust               nicolas    13 1573821 8.260152e-06
## 13008   Jeff Foust          nonessential    13 1573821 8.260152e-06
## 13009   Jeff Foust             northeast    13 1573821 8.260152e-06
## 13010   Jeff Foust                notion    13 1573821 8.260152e-06
## 13011   Jeff Foust                  nuts    13 1573821 8.260152e-06
## 13012   Jeff Foust              ochinero    13 1573821 8.260152e-06
## 13013   Jeff Foust                 one’s    13 1573821 8.260152e-06
## 13014   Jeff Foust              openness    13 1573821 8.260152e-06
## 13015   Jeff Foust                   ops    13 1573821 8.260152e-06
## 13016   Jeff Foust                 opted    13 1573821 8.260152e-06
## 13017   Jeff Foust        oversubscribed    13 1573821 8.260152e-06
## 13018   Jeff Foust               o’neill    13 1573821 8.260152e-06
## 13019   Jeff Foust                    pa    13 1573821 8.260152e-06
## 13020   Jeff Foust                   pai    13 1573821 8.260152e-06
## 13021   Jeff Foust                 pains    13 1573821 8.260152e-06
## 13022   Jeff Foust              parlance    13 1573821 8.260152e-06
## 13023   Jeff Foust             parochial    13 1573821 8.260152e-06
## 13024   Jeff Foust                peller    13 1573821 8.260152e-06
## 13025   Jeff Foust               pension    13 1573821 8.260152e-06
## 13026   Jeff Foust             permitted    13 1573821 8.260152e-06
## 13027   Jeff Foust           pessimistic    13 1573821 8.260152e-06
## 13028   Jeff Foust                phrase    13 1573821 8.260152e-06
## 13029   Jeff Foust              pléiades    13 1573821 8.260152e-06
## 13030   Jeff Foust             polispace    13 1573821 8.260152e-06
## 13031   Jeff Foust           politically    13 1573821 8.260152e-06
## 13032   Jeff Foust            postlaunch    13 1573821 8.260152e-06
## 13033   Jeff Foust              praising    13 1573821 8.260152e-06
## 13034   Jeff Foust            precaution    13 1573821 8.260152e-06
## 13035   Jeff Foust          predecessors    13 1573821 8.260152e-06
## 13036   Jeff Foust               preview    13 1573821 8.260152e-06
## 13037   Jeff Foust             privilege    13 1573821 8.260152e-06
## 13038   Jeff Foust                probes    13 1573821 8.260152e-06
## 13039   Jeff Foust            procedural    13 1573821 8.260152e-06
## 13040   Jeff Foust                  pure    13 1573821 8.260152e-06
## 13041   Jeff Foust            qualifying    13 1573821 8.260152e-06
## 13042   Jeff Foust                 queue    13 1573821 8.260152e-06
## 13043   Jeff Foust               quicker    13 1573821 8.260152e-06
## 13044   Jeff Foust                ramped    13 1573821 8.260152e-06
## 13045   Jeff Foust              rapideye    13 1573821 8.260152e-06
## 13046   Jeff Foust             recycling    13 1573821 8.260152e-06
## 13047   Jeff Foust             reexamine    13 1573821 8.260152e-06
## 13048   Jeff Foust            repeatable    13 1573821 8.260152e-06
## 13049   Jeff Foust             repurpose    13 1573821 8.260152e-06
## 13050   Jeff Foust            restarting    13 1573821 8.260152e-06
## 13051   Jeff Foust         revolutionize    13 1573821 8.260152e-06
## 13052   Jeff Foust                 rigby    13 1573821 8.260152e-06
## 13053   Jeff Foust                   rod    13 1573821 8.260152e-06
## 13054   Jeff Foust               romania    13 1573821 8.260152e-06
## 13055   Jeff Foust              samantha    13 1573821 8.260152e-06
## 13056   Jeff Foust                   sas    13 1573821 8.260152e-06
## 13057   Jeff Foust                 saved    13 1573821 8.260152e-06
## 13058   Jeff Foust                schatz    13 1573821 8.260152e-06
## 13059   Jeff Foust               scoring    13 1573821 8.260152e-06
## 13060   Jeff Foust                screen    13 1573821 8.260152e-06
## 13061   Jeff Foust               segundo    13 1573821 8.260152e-06
## 13062   Jeff Foust              sentence    13 1573821 8.260152e-06
## 13063   Jeff Foust             service’s    13 1573821 8.260152e-06
## 13064   Jeff Foust               seymour    13 1573821 8.260152e-06
## 13065   Jeff Foust                 shake    13 1573821 8.260152e-06
## 13066   Jeff Foust               sharper    13 1573821 8.260152e-06
## 13067   Jeff Foust                 sheer    13 1573821 8.260152e-06
## 13068   Jeff Foust                shower    13 1573821 8.260152e-06
## 13069   Jeff Foust            simulators    13 1573821 8.260152e-06
## 13070   Jeff Foust            situations    13 1573821 8.260152e-06
## 13071   Jeff Foust             sovereign    13 1573821 8.260152e-06
## 13072   Jeff Foust                 spell    13 1573821 8.260152e-06
## 13073   Jeff Foust                spends    13 1573821 8.260152e-06
## 13074   Jeff Foust                   sri    13 1573821 8.260152e-06
## 13075   Jeff Foust             stabilize    13 1573821 8.260152e-06
## 13076   Jeff Foust              stalking    13 1573821 8.260152e-06
## 13077   Jeff Foust            starship’s    13 1573821 8.260152e-06
## 13078   Jeff Foust               staunch    13 1573821 8.260152e-06
## 13079   Jeff Foust                 stems    13 1573821 8.260152e-06
## 13080   Jeff Foust          strengthened    13 1573821 8.260152e-06
## 13081   Jeff Foust                stride    13 1573821 8.260152e-06
## 13082   Jeff Foust                 strip    13 1573821 8.260152e-06
## 13083   Jeff Foust                strypi    13 1573821 8.260152e-06
## 13084   Jeff Foust                subset    13 1573821 8.260152e-06
## 13085   Jeff Foust                  sued    13 1573821 8.260152e-06
## 13086   Jeff Foust             supplying    13 1573821 8.260152e-06
## 13087   Jeff Foust             surprises    13 1573821 8.260152e-06
## 13088   Jeff Foust                  sxsw    13 1573821 8.260152e-06
## 13089   Jeff Foust                tapped    13 1573821 8.260152e-06
## 13090   Jeff Foust                   tea    13 1573821 8.260152e-06
## 13091   Jeff Foust               telstar    13 1573821 8.260152e-06
## 13092   Jeff Foust              terrible    13 1573821 8.260152e-06
## 13093   Jeff Foust               thaicom    13 1573821 8.260152e-06
## 13094   Jeff Foust              throwing    13 1573821 8.260152e-06
## 13095   Jeff Foust           transmitter    13 1573821 8.260152e-06
## 13096   Jeff Foust            treatments    13 1573821 8.260152e-06
## 13097   Jeff Foust                tumble    13 1573821 8.260152e-06
## 13098   Jeff Foust                turkey    13 1573821 8.260152e-06
## 13099   Jeff Foust                twelve    13 1573821 8.260152e-06
## 13100   Jeff Foust                   uac    13 1573821 8.260152e-06
## 13101   Jeff Foust           underserved    13 1573821 8.260152e-06
## 13102   Jeff Foust              unmanned    13 1573821 8.260152e-06
## 13103   Jeff Foust                   ups    13 1573821 8.260152e-06
## 13104   Jeff Foust                  v0.9    13 1573821 8.260152e-06
## 13105   Jeff Foust            velocities    13 1573821 8.260152e-06
## 13106   Jeff Foust                  vera    13 1573821 8.260152e-06
## 13107   Jeff Foust                viewed    13 1573821 8.260152e-06
## 13108   Jeff Foust                   vil    13 1573821 8.260152e-06
## 13109   Jeff Foust                 waive    13 1573821 8.260152e-06
## 13110   Jeff Foust                  watt    13 1573821 8.260152e-06
## 13111   Jeff Foust               wiseman    13 1573821 8.260152e-06
## 13112   Jeff Foust           withdrawing    13 1573821 8.260152e-06
## 13113   Jeff Foust             withstand    13 1573821 8.260152e-06
## 13114   Jeff Foust             wondering    13 1573821 8.260152e-06
## 13115   Jeff Foust                zenith    13 1573821 8.260152e-06
## 13116   Jeff Foust                   åac    13 1573821 8.260152e-06
## 13117 Sandra Erwin               aalyria    13  716353 1.814748e-05
## 13118 Sandra Erwin              accident    13  716353 1.814748e-05
## 13119 Sandra Erwin            actionable    13  716353 1.814748e-05
## 13120 Sandra Erwin                  acts    13  716353 1.814748e-05
## 13121 Sandra Erwin             alexander    13  716353 1.814748e-05
## 13122 Sandra Erwin                alitec    13  716353 1.814748e-05
## 13123 Sandra Erwin            allocation    13  716353 1.814748e-05
## 13124 Sandra Erwin                  ally    13  716353 1.814748e-05
## 13125 Sandra Erwin               andrews    13  716353 1.814748e-05
## 13126 Sandra Erwin               anduril    13  716353 1.814748e-05
## 13127 Sandra Erwin               antares    13  716353 1.814748e-05
## 13128 Sandra Erwin         appropriation    13  716353 1.814748e-05
## 13129 Sandra Erwin                   ash    13  716353 1.814748e-05
## 13130 Sandra Erwin            assumption    13  716353 1.814748e-05
## 13131 Sandra Erwin            attempting    13  716353 1.814748e-05
## 13132 Sandra Erwin           australia’s    13  716353 1.814748e-05
## 13133 Sandra Erwin               battles    13  716353 1.814748e-05
## 13134 Sandra Erwin             bilateral    13  716353 1.814748e-05
## 13135 Sandra Erwin               binding    13  716353 1.814748e-05
## 13136 Sandra Erwin             bloomberg    13  716353 1.814748e-05
## 13137 Sandra Erwin                 bound    13  716353 1.814748e-05
## 13138 Sandra Erwin               branson    13  716353 1.814748e-05
## 13139 Sandra Erwin          breakthrough    13  716353 1.814748e-05
## 13140 Sandra Erwin               breakup    13  716353 1.814748e-05
## 13141 Sandra Erwin             budgetary    13  716353 1.814748e-05
## 13142 Sandra Erwin               burgess    13  716353 1.814748e-05
## 13143 Sandra Erwin                  busy    13  716353 1.814748e-05
## 13144 Sandra Erwin               caceres    13  716353 1.814748e-05
## 13145 Sandra Erwin              calendar    13  716353 1.814748e-05
## 13146 Sandra Erwin              capsules    13  716353 1.814748e-05
## 13147 Sandra Erwin                   car    13  716353 1.814748e-05
## 13148 Sandra Erwin                carbon    13  716353 1.814748e-05
## 13149 Sandra Erwin               casting    13  716353 1.814748e-05
## 13150 Sandra Erwin               centric    13  716353 1.814748e-05
## 13151 Sandra Erwin               charter    13  716353 1.814748e-05
## 13152 Sandra Erwin                charts    13  716353 1.814748e-05
## 13153 Sandra Erwin                 chips    13  716353 1.814748e-05
## 13154 Sandra Erwin              choosing    13  716353 1.814748e-05
## 13155 Sandra Erwin               circles    13  716353 1.814748e-05
## 13156 Sandra Erwin              claussen    13  716353 1.814748e-05
## 13157 Sandra Erwin            collective    13  716353 1.814748e-05
## 13158 Sandra Erwin               commits    13  716353 1.814748e-05
## 13159 Sandra Erwin            complaints    13  716353 1.814748e-05
## 13160 Sandra Erwin              connects    13  716353 1.814748e-05
## 13161 Sandra Erwin              consists    13  716353 1.814748e-05
## 13162 Sandra Erwin             consuming    13  716353 1.814748e-05
## 13163 Sandra Erwin              contents    13  716353 1.814748e-05
## 13164 Sandra Erwin           continental    13  716353 1.814748e-05
## 13165 Sandra Erwin                convey    13  716353 1.814748e-05
## 13166 Sandra Erwin                  cope    13  716353 1.814748e-05
## 13167 Sandra Erwin               costing    13  716353 1.814748e-05
## 13168 Sandra Erwin                cramer    13  716353 1.814748e-05
## 13169 Sandra Erwin                crimea    13  716353 1.814748e-05
## 13170 Sandra Erwin              debating    13  716353 1.814748e-05
## 13171 Sandra Erwin               decline    13  716353 1.814748e-05
## 13172 Sandra Erwin             defense’s    13  716353 1.814748e-05
## 13173 Sandra Erwin              demanded    13  716353 1.814748e-05
## 13174 Sandra Erwin                denaro    13  716353 1.814748e-05
## 13175 Sandra Erwin                 depot    13  716353 1.814748e-05
## 13176 Sandra Erwin                  dish    13  716353 1.814748e-05
## 13177 Sandra Erwin             dispersed    13  716353 1.814748e-05
## 13178 Sandra Erwin          distribution    13  716353 1.814748e-05
## 13179 Sandra Erwin          domestically    13  716353 1.814748e-05
## 13180 Sandra Erwin                doubts    13  716353 1.814748e-05
## 13181 Sandra Erwin            downlinked    13  716353 1.814748e-05
## 13182 Sandra Erwin               drastic    13  716353 1.814748e-05
## 13183 Sandra Erwin                dreier    13  716353 1.814748e-05
## 13184 Sandra Erwin                driver    13  716353 1.814748e-05
## 13185 Sandra Erwin           duplication    13  716353 1.814748e-05
## 13186 Sandra Erwin                   elc    13  716353 1.814748e-05
## 13187 Sandra Erwin            electrical    13  716353 1.814748e-05
## 13188 Sandra Erwin               elevate    13  716353 1.814748e-05
## 13189 Sandra Erwin               enabler    13  716353 1.814748e-05
## 13190 Sandra Erwin             endurance    13  716353 1.814748e-05
## 13191 Sandra Erwin                 error    13  716353 1.814748e-05
## 13192 Sandra Erwin                   esa    13  716353 1.814748e-05
## 13193 Sandra Erwin              eumetsat    13  716353 1.814748e-05
## 13194 Sandra Erwin               expands    13  716353 1.814748e-05
## 13195 Sandra Erwin          expenditures    13  716353 1.814748e-05
## 13196 Sandra Erwin         experimenting    13  716353 1.814748e-05
## 13197 Sandra Erwin              exposure    13  716353 1.814748e-05
## 13198 Sandra Erwin               facktor    13  716353 1.814748e-05
## 13199 Sandra Erwin                  fell    13  716353 1.814748e-05
## 13200 Sandra Erwin                firmly    13  716353 1.814748e-05
## 13201 Sandra Erwin               gabriel    13  716353 1.814748e-05
## 13202 Sandra Erwin              gigabits    13  716353 1.814748e-05
## 13203 Sandra Erwin                 grant    13  716353 1.814748e-05
## 13204 Sandra Erwin              guardian    13  716353 1.814748e-05
## 13205 Sandra Erwin                   guy    13  716353 1.814748e-05
## 13206 Sandra Erwin              hamilton    13  716353 1.814748e-05
## 13207 Sandra Erwin              handling    13  716353 1.814748e-05
## 13208 Sandra Erwin          hickenlooper    13  716353 1.814748e-05
## 13209 Sandra Erwin                hinted    13  716353 1.814748e-05
## 13210 Sandra Erwin                 honor    13  716353 1.814748e-05
## 13211 Sandra Erwin               honored    13  716353 1.814748e-05
## 13212 Sandra Erwin                 horne    13  716353 1.814748e-05
## 13213 Sandra Erwin         incorporating    13  716353 1.814748e-05
## 13214 Sandra Erwin               india’s    13  716353 1.814748e-05
## 13215 Sandra Erwin            indication    13  716353 1.814748e-05
## 13216 Sandra Erwin                ingest    13  716353 1.814748e-05
## 13217 Sandra Erwin               inspect    13  716353 1.814748e-05
## 13218 Sandra Erwin         institutional    13  716353 1.814748e-05
## 13219 Sandra Erwin            intelsat’s    13  716353 1.814748e-05
## 13220 Sandra Erwin               intense    13  716353 1.814748e-05
## 13221 Sandra Erwin                   kbr    13  716353 1.814748e-05
## 13222 Sandra Erwin                  keen    13  716353 1.814748e-05
## 13223 Sandra Erwin               kenneth    13  716353 1.814748e-05
## 13224 Sandra Erwin                korean    13  716353 1.814748e-05
## 13225 Sandra Erwin             laurienti    13  716353 1.814748e-05
## 13226 Sandra Erwin                  leaf    13  716353 1.814748e-05
## 13227 Sandra Erwin               leasing    13  716353 1.814748e-05
## 13228 Sandra Erwin                 lerch    13  716353 1.814748e-05
## 13229 Sandra Erwin                  lisa    13  716353 1.814748e-05
## 13230 Sandra Erwin                  loop    13  716353 1.814748e-05
## 13231 Sandra Erwin                losers    13  716353 1.814748e-05
## 13232 Sandra Erwin            maintained    13  716353 1.814748e-05
## 13233 Sandra Erwin                  maui    13  716353 1.814748e-05
## 13234 Sandra Erwin              mckenzie    13  716353 1.814748e-05
## 13235 Sandra Erwin          measurements    13  716353 1.814748e-05
## 13236 Sandra Erwin     megaconstellation    13  716353 1.814748e-05
## 13237 Sandra Erwin                metric    13  716353 1.814748e-05
## 13238 Sandra Erwin                 micha    13  716353 1.814748e-05
## 13239 Sandra Erwin                 midst    13  716353 1.814748e-05
## 13240 Sandra Erwin                 minds    13  716353 1.814748e-05
## 13241 Sandra Erwin               mistake    13  716353 1.814748e-05
## 13242 Sandra Erwin          multilateral    13  716353 1.814748e-05
## 13243 Sandra Erwin                musk’s    13  716353 1.814748e-05
## 13244 Sandra Erwin                 niche    13  716353 1.814748e-05
## 13245 Sandra Erwin                 noise    13  716353 1.814748e-05
## 13246 Sandra Erwin                  nsic    13  716353 1.814748e-05
## 13247 Sandra Erwin           obligations    13  716353 1.814748e-05
## 13248 Sandra Erwin             ogsystems    13  716353 1.814748e-05
## 13249 Sandra Erwin               omega’s    13  716353 1.814748e-05
## 13250 Sandra Erwin               opinion    13  716353 1.814748e-05
## 13251 Sandra Erwin               overdue    13  716353 1.814748e-05
## 13252 Sandra Erwin               oversaw    13  716353 1.814748e-05
## 13253 Sandra Erwin              o’rielly    13  716353 1.814748e-05
## 13254 Sandra Erwin               passion    13  716353 1.814748e-05
## 13255 Sandra Erwin                patrol    13  716353 1.814748e-05
## 13256 Sandra Erwin              patterns    13  716353 1.814748e-05
## 13257 Sandra Erwin                peller    13  716353 1.814748e-05
## 13258 Sandra Erwin            percentage    13  716353 1.814748e-05
## 13259 Sandra Erwin              persuade    13  716353 1.814748e-05
## 13260 Sandra Erwin              pivoting    13  716353 1.814748e-05
## 13261 Sandra Erwin               plagued    13  716353 1.814748e-05
## 13262 Sandra Erwin                  pole    13  716353 1.814748e-05
## 13263 Sandra Erwin                 probe    13  716353 1.814748e-05
## 13264 Sandra Erwin            propulsive    13  716353 1.814748e-05
## 13265 Sandra Erwin           protections    13  716353 1.814748e-05
## 13266 Sandra Erwin              protocol    13  716353 1.814748e-05
## 13267 Sandra Erwin                proved    13  716353 1.814748e-05
## 13268 Sandra Erwin                 ramps    13  716353 1.814748e-05
## 13269 Sandra Erwin                rarely    13  716353 1.814748e-05
## 13270 Sandra Erwin                  ravn    13  716353 1.814748e-05
## 13271 Sandra Erwin                 react    13  716353 1.814748e-05
## 13272 Sandra Erwin               readily    13  716353 1.814748e-05
## 13273 Sandra Erwin              receives    13  716353 1.814748e-05
## 13274 Sandra Erwin                recess    13  716353 1.814748e-05
## 13275 Sandra Erwin        reconstitution    13  716353 1.814748e-05
## 13276 Sandra Erwin              resigned    13  716353 1.814748e-05
## 13277 Sandra Erwin             returning    13  716353 1.814748e-05
## 13278 Sandra Erwin              revisits    13  716353 1.814748e-05
## 13279 Sandra Erwin               roadmap    13  716353 1.814748e-05
## 13280 Sandra Erwin                 sadat    13  716353 1.814748e-05
## 13281 Sandra Erwin                safari    13  716353 1.814748e-05
## 13282 Sandra Erwin               sailors    13  716353 1.814748e-05
## 13283 Sandra Erwin             satisfied    13  716353 1.814748e-05
## 13284 Sandra Erwin              saturday    13  716353 1.814748e-05
## 13285 Sandra Erwin                scheme    13  716353 1.814748e-05
## 13286 Sandra Erwin                   sco    13  716353 1.814748e-05
## 13287 Sandra Erwin              shriever    13  716353 1.814748e-05
## 13288 Sandra Erwin             shrinking    13  716353 1.814748e-05
## 13289 Sandra Erwin             simulated    13  716353 1.814748e-05
## 13290 Sandra Erwin              slightly    13  716353 1.814748e-05
## 13291 Sandra Erwin             spacelink    13  716353 1.814748e-05
## 13292 Sandra Erwin                spadoc    13  716353 1.814748e-05
## 13293 Sandra Erwin                 spots    13  716353 1.814748e-05
## 13294 Sandra Erwin             starliner    13  716353 1.814748e-05
## 13295 Sandra Erwin              straight    13  716353 1.814748e-05
## 13296 Sandra Erwin          stratolaunch    13  716353 1.814748e-05
## 13297 Sandra Erwin             submarine    13  716353 1.814748e-05
## 13298 Sandra Erwin            submission    13  716353 1.814748e-05
## 13299 Sandra Erwin                suffer    13  716353 1.814748e-05
## 13300 Sandra Erwin            suggestion    13  716353 1.814748e-05
## 13301 Sandra Erwin                sunday    13  716353 1.814748e-05
## 13302 Sandra Erwin                 syria    13  716353 1.814748e-05
## 13303 Sandra Erwin              tabletop    13  716353 1.814748e-05
## 13304 Sandra Erwin                themes    13  716353 1.814748e-05
## 13305 Sandra Erwin                theory    13  716353 1.814748e-05
## 13306 Sandra Erwin             threatens    13  716353 1.814748e-05
## 13307 Sandra Erwin                  town    13  716353 1.814748e-05
## 13308 Sandra Erwin             translate    13  716353 1.814748e-05
## 13309 Sandra Erwin             traveling    13  716353 1.814748e-05
## 13310 Sandra Erwin           triezenberg    13  716353 1.814748e-05
## 13311 Sandra Erwin              trimailo    13  716353 1.814748e-05
## 13312 Sandra Erwin                  troy    13  716353 1.814748e-05
## 13313 Sandra Erwin                 twist    13  716353 1.814748e-05
## 13314 Sandra Erwin              ultimate    13  716353 1.814748e-05
## 13315 Sandra Erwin                 unify    13  716353 1.814748e-05
## 13316 Sandra Erwin            unintended    13  716353 1.814748e-05
## 13317 Sandra Erwin             unlimited    13  716353 1.814748e-05
## 13318 Sandra Erwin        unsuccessfully    13  716353 1.814748e-05
## 13319 Sandra Erwin                urging    13  716353 1.814748e-05
## 13320 Sandra Erwin                valued    13  716353 1.814748e-05
## 13321 Sandra Erwin              vanguard    13  716353 1.814748e-05
## 13322 Sandra Erwin                vessel    13  716353 1.814748e-05
## 13323 Sandra Erwin                vetted    13  716353 1.814748e-05
## 13324 Sandra Erwin               volumes    13  716353 1.814748e-05
## 13325 Sandra Erwin                 wentz    13  716353 1.814748e-05
## 13326 Sandra Erwin           westminster    13  716353 1.814748e-05
## 13327 Sandra Erwin                  wind    13  716353 1.814748e-05
## 13328 Sandra Erwin                  wise    13  716353 1.814748e-05
## 13329 Sandra Erwin              withdrew    13  716353 1.814748e-05
## 13330 Sandra Erwin              workload    13  716353 1.814748e-05
## 13331   Jeff Foust                  32nd    12 1573821 7.624755e-06
## 13332   Jeff Foust              abundant    12 1573821 7.624755e-06
## 13333   Jeff Foust           accountable    12 1573821 7.624755e-06
## 13334   Jeff Foust            aggregator    12 1573821 7.624755e-06
## 13335   Jeff Foust              agnostic    12 1573821 7.624755e-06
## 13336   Jeff Foust            aircraft’s    12 1573821 7.624755e-06
## 13337   Jeff Foust              airfield    12 1573821 7.624755e-06
## 13338   Jeff Foust                   ais    12 1573821 7.624755e-06
## 13339   Jeff Foust                  aj26    12 1573821 7.624755e-06
## 13340   Jeff Foust                 alert    12 1573821 7.624755e-06
## 13341   Jeff Foust                 alien    12 1573821 7.624755e-06
## 13342   Jeff Foust                aligns    12 1573821 7.624755e-06
## 13343   Jeff Foust                  alpa    12 1573821 7.624755e-06
## 13344   Jeff Foust               altered    12 1573821 7.624755e-06
## 13345   Jeff Foust            altogether    12 1573821 7.624755e-06
## 13346   Jeff Foust               ambrose    12 1573821 7.624755e-06
## 13347   Jeff Foust             apertures    12 1573821 7.624755e-06
## 13348   Jeff Foust              appetite    12 1573821 7.624755e-06
## 13349   Jeff Foust            appointees    12 1573821 7.624755e-06
## 13350   Jeff Foust              archives    12 1573821 7.624755e-06
## 13351   Jeff Foust                 aries    12 1573821 7.624755e-06
## 13352   Jeff Foust              arranges    12 1573821 7.624755e-06
## 13353   Jeff Foust               asiasat    12 1573821 7.624755e-06
## 13354   Jeff Foust        astrophysicist    12 1573821 7.624755e-06
## 13355   Jeff Foust                 atoll    12 1573821 7.624755e-06
## 13356   Jeff Foust             auxiliary    12 1573821 7.624755e-06
## 13357   Jeff Foust                avenue    12 1573821 7.624755e-06
## 13358   Jeff Foust                bachus    12 1573821 7.624755e-06
## 13359   Jeff Foust              backlash    12 1573821 7.624755e-06
## 13360   Jeff Foust               bahrain    12 1573821 7.624755e-06
## 13361   Jeff Foust                benign    12 1573821 7.624755e-06
## 13362   Jeff Foust                 berth    12 1573821 7.624755e-06
## 13363   Jeff Foust               bespoke    12 1573821 7.624755e-06
## 13364   Jeff Foust               blaming    12 1573821 7.624755e-06
## 13365   Jeff Foust             boshuizen    12 1573821 7.624755e-06
## 13366   Jeff Foust                   boy    12 1573821 7.624755e-06
## 13367   Jeff Foust              brothers    12 1573821 7.624755e-06
## 13368   Jeff Foust                burrow    12 1573821 7.624755e-06
## 13369   Jeff Foust           calibration    12 1573821 7.624755e-06
## 13370   Jeff Foust                 canon    12 1573821 7.624755e-06
## 13371   Jeff Foust              casualty    12 1573821 7.624755e-06
## 13372   Jeff Foust           celebrating    12 1573821 7.624755e-06
## 13373   Jeff Foust           centerpiece    12 1573821 7.624755e-06
## 13374   Jeff Foust               chasing    12 1573821 7.624755e-06
## 13375   Jeff Foust              children    12 1573821 7.624755e-06
## 13376   Jeff Foust                  chou    12 1573821 7.624755e-06
## 13377   Jeff Foust                cicero    12 1573821 7.624755e-06
## 13378   Jeff Foust                cichan    12 1573821 7.624755e-06
## 13379   Jeff Foust              cinnamon    12 1573821 7.624755e-06
## 13380   Jeff Foust           circulating    12 1573821 7.624755e-06
## 13381   Jeff Foust                codify    12 1573821 7.624755e-06
## 13382   Jeff Foust             colleague    12 1573821 7.624755e-06
## 13383   Jeff Foust             colloredo    12 1573821 7.624755e-06
## 13384   Jeff Foust       commercializing    12 1573821 7.624755e-06
## 13385   Jeff Foust           commonality    12 1573821 7.624755e-06
## 13386   Jeff Foust          compensation    12 1573821 7.624755e-06
## 13387   Jeff Foust             compliant    12 1573821 7.624755e-06
## 13388   Jeff Foust             compounds    12 1573821 7.624755e-06
## 13389   Jeff Foust            connecting    12 1573821 7.624755e-06
## 13390   Jeff Foust           consistency    12 1573821 7.624755e-06
## 13391   Jeff Foust             constrain    12 1573821 7.624755e-06
## 13392   Jeff Foust             contested    12 1573821 7.624755e-06
## 13393   Jeff Foust            conversion    12 1573821 7.624755e-06
## 13394   Jeff Foust               corners    12 1573821 7.624755e-06
## 13395   Jeff Foust               cremins    12 1573821 7.624755e-06
## 13396   Jeff Foust         cristoforetti    12 1573821 7.624755e-06
## 13397   Jeff Foust                 cspoc    12 1573821 7.624755e-06
## 13398   Jeff Foust            customer’s    12 1573821 7.624755e-06
## 13399   Jeff Foust                dart’s    12 1573821 7.624755e-06
## 13400   Jeff Foust              davidson    12 1573821 7.624755e-06
## 13401   Jeff Foust                debtor    12 1573821 7.624755e-06
## 13402   Jeff Foust                defeat    12 1573821 7.624755e-06
## 13403   Jeff Foust                   del    12 1573821 7.624755e-06
## 13404   Jeff Foust             delegates    12 1573821 7.624755e-06
## 13405   Jeff Foust                  deny    12 1573821 7.624755e-06
## 13406   Jeff Foust              depended    12 1573821 7.624755e-06
## 13407   Jeff Foust             designate    12 1573821 7.624755e-06
## 13408   Jeff Foust             desirable    12 1573821 7.624755e-06
## 13409   Jeff Foust            determines    12 1573821 7.624755e-06
## 13410   Jeff Foust              deterred    12 1573821 7.624755e-06
## 13411   Jeff Foust             diamandis    12 1573821 7.624755e-06
## 13412   Jeff Foust               dickson    12 1573821 7.624755e-06
## 13413   Jeff Foust                dimmer    12 1573821 7.624755e-06
## 13414   Jeff Foust           disciplines    12 1573821 7.624755e-06
## 13415   Jeff Foust                dishes    12 1573821 7.624755e-06
## 13416   Jeff Foust             dispenser    12 1573821 7.624755e-06
## 13417   Jeff Foust           distraction    12 1573821 7.624755e-06
## 13418   Jeff Foust               divided    12 1573821 7.624755e-06
## 13419   Jeff Foust                  dodd    12 1573821 7.624755e-06
## 13420   Jeff Foust            downstream    12 1573821 7.624755e-06
## 13421   Jeff Foust              drifting    12 1573821 7.624755e-06
## 13422   Jeff Foust              drilling    12 1573821 7.624755e-06
## 13423   Jeff Foust                  earn    12 1573821 7.624755e-06
## 13424   Jeff Foust                   eat    12 1573821 7.624755e-06
## 13425   Jeff Foust             electrons    12 1573821 7.624755e-06
## 13426   Jeff Foust               elevate    12 1573821 7.624755e-06
## 13427   Jeff Foust             elizabeth    12 1573821 7.624755e-06
## 13428   Jeff Foust                embark    12 1573821 7.624755e-06
## 13429   Jeff Foust              enacting    12 1573821 7.624755e-06
## 13430   Jeff Foust            encourages    12 1573821 7.624755e-06
## 13431   Jeff Foust           enhancement    12 1573821 7.624755e-06
## 13432   Jeff Foust              enjoying    12 1573821 7.624755e-06
## 13433   Jeff Foust               entries    12 1573821 7.624755e-06
## 13434   Jeff Foust            eutelsat’s    12 1573821 7.624755e-06
## 13435   Jeff Foust             evolvable    12 1573821 7.624755e-06
## 13436   Jeff Foust           exceptional    12 1573821 7.624755e-06
## 13437   Jeff Foust             exolaunch    12 1573821 7.624755e-06
## 13438   Jeff Foust            extracting    12 1573821 7.624755e-06
## 13439   Jeff Foust                fabric    12 1573821 7.624755e-06
## 13440   Jeff Foust           fabrication    12 1573821 7.624755e-06
## 13441   Jeff Foust                  fame    12 1573821 7.624755e-06
## 13442   Jeff Foust                 fared    12 1573821 7.624755e-06
## 13443   Jeff Foust              favorite    12 1573821 7.624755e-06
## 13444   Jeff Foust                 fears    12 1573821 7.624755e-06
## 13445   Jeff Foust               fedyaev    12 1573821 7.624755e-06
## 13446   Jeff Foust                  feng    12 1573821 7.624755e-06
## 13447   Jeff Foust                ffrdcs    12 1573821 7.624755e-06
## 13448   Jeff Foust               fighter    12 1573821 7.624755e-06
## 13449   Jeff Foust                finney    12 1573821 7.624755e-06
## 13450   Jeff Foust                  fish    12 1573821 7.624755e-06
## 13451   Jeff Foust                 flash    12 1573821 7.624755e-06
## 13452   Jeff Foust          fluctuations    12 1573821 7.624755e-06
## 13453   Jeff Foust              foothold    12 1573821 7.624755e-06
## 13454   Jeff Foust               fortune    12 1573821 7.624755e-06
## 13455   Jeff Foust              fragnito    12 1573821 7.624755e-06
## 13456   Jeff Foust              freezing    12 1573821 7.624755e-06
## 13457   Jeff Foust                 fuels    12 1573821 7.624755e-06
## 13458   Jeff Foust                 garan    12 1573821 7.624755e-06
## 13459   Jeff Foust                gemini    12 1573821 7.624755e-06
## 13460   Jeff Foust                   gnc    12 1573821 7.624755e-06
## 13461   Jeff Foust              goldberg    12 1573821 7.624755e-06
## 13462   Jeff Foust             goldstone    12 1573821 7.624755e-06
## 13463   Jeff Foust               governs    12 1573821 7.624755e-06
## 13464   Jeff Foust                  guam    12 1573821 7.624755e-06
## 13465   Jeff Foust                here’s    12 1573821 7.624755e-06
## 13466   Jeff Foust              hesitant    12 1573821 7.624755e-06
## 13467   Jeff Foust                hewson    12 1573821 7.624755e-06
## 13468   Jeff Foust                   hey    12 1573821 7.624755e-06
## 13469   Jeff Foust              holidays    12 1573821 7.624755e-06
## 13470   Jeff Foust             hollywood    12 1573821 7.624755e-06
## 13471   Jeff Foust              honeybee    12 1573821 7.624755e-06
## 13472   Jeff Foust                  hook    12 1573821 7.624755e-06
## 13473   Jeff Foust                 hurry    12 1573821 7.624755e-06
## 13474   Jeff Foust            hypergolic    12 1573821 7.624755e-06
## 13475   Jeff Foust                  ians    12 1573821 7.624755e-06
## 13476   Jeff Foust                ignore    12 1573821 7.624755e-06
## 13477   Jeff Foust                immune    12 1573821 7.624755e-06
## 13478   Jeff Foust             impatient    12 1573821 7.624755e-06
## 13479   Jeff Foust         inadvertently    12 1573821 7.624755e-06
## 13480   Jeff Foust        inefficiencies    12 1573821 7.624755e-06
## 13481   Jeff Foust            inherently    12 1573821 7.624755e-06
## 13482   Jeff Foust             instructs    12 1573821 7.624755e-06
## 13483   Jeff Foust             intercept    12 1573821 7.624755e-06
## 13484   Jeff Foust      interoperability    12 1573821 7.624755e-06
## 13485   Jeff Foust               invests    12 1573821 7.624755e-06
## 13486   Jeff Foust           ionospheric    12 1573821 7.624755e-06
## 13487   Jeff Foust                 ixion    12 1573821 7.624755e-06
## 13488   Jeff Foust             jablonsky    12 1573821 7.624755e-06
## 13489   Jeff Foust                  jody    12 1573821 7.624755e-06
## 13490   Jeff Foust                 joyce    12 1573821 7.624755e-06
## 13491   Jeff Foust                  kids    12 1573821 7.624755e-06
## 13492   Jeff Foust             kilopower    12 1573821 7.624755e-06
## 13493   Jeff Foust                    km    12 1573821 7.624755e-06
## 13494   Jeff Foust                koller    12 1573821 7.624755e-06
## 13495   Jeff Foust             kongsberg    12 1573821 7.624755e-06
## 13496   Jeff Foust           kryukovskiy    12 1573821 7.624755e-06
## 13497   Jeff Foust                 kumar    12 1573821 7.624755e-06
## 13498   Jeff Foust                    l1    12 1573821 7.624755e-06
## 13499   Jeff Foust              l3harris    12 1573821 7.624755e-06
## 13500   Jeff Foust                  lame    12 1573821 7.624755e-06
## 13501   Jeff Foust                lanham    12 1573821 7.624755e-06
## 13502   Jeff Foust             launchpad    12 1573821 7.624755e-06
## 13503   Jeff Foust                 laura    12 1573821 7.624755e-06
## 13504   Jeff Foust                  ldpe    12 1573821 7.624755e-06
## 13505   Jeff Foust                leidos    12 1573821 7.624755e-06
## 13506   Jeff Foust               lengths    12 1573821 7.624755e-06
## 13507   Jeff Foust                   les    12 1573821 7.624755e-06
## 13508   Jeff Foust                  lieu    12 1573821 7.624755e-06
## 13509   Jeff Foust               lindsay    12 1573821 7.624755e-06
## 13510   Jeff Foust          longstanding    12 1573821 7.624755e-06
## 13511   Jeff Foust                  luca    12 1573821 7.624755e-06
## 13512   Jeff Foust                makers    12 1573821 7.624755e-06
## 13513   Jeff Foust       maneuverability    12 1573821 7.624755e-06
## 13514   Jeff Foust               mankind    12 1573821 7.624755e-06
## 13515   Jeff Foust               marquez    12 1573821 7.624755e-06
## 13516   Jeff Foust             mcconnell    12 1573821 7.624755e-06
## 13517   Jeff Foust               mcgrath    12 1573821 7.624755e-06
## 13518   Jeff Foust                   mdm    12 1573821 7.624755e-06
## 13519   Jeff Foust               meixner    12 1573821 7.624755e-06
## 13520   Jeff Foust                merits    12 1573821 7.624755e-06
## 13521   Jeff Foust          methodically    12 1573821 7.624755e-06
## 13522   Jeff Foust              microsat    12 1573821 7.624755e-06
## 13523   Jeff Foust                minded    12 1573821 7.624755e-06
## 13524   Jeff Foust             minimized    12 1573821 7.624755e-06
## 13525   Jeff Foust                 mitch    12 1573821 7.624755e-06
## 13526   Jeff Foust                movies    12 1573821 7.624755e-06
## 13527   Jeff Foust          multipurpose    12 1573821 7.624755e-06
## 13528   Jeff Foust               nagaraj    12 1573821 7.624755e-06
## 13529   Jeff Foust               narayan    12 1573821 7.624755e-06
## 13530   Jeff Foust            nationwide    12 1573821 7.624755e-06
## 13531   Jeff Foust              navigate    12 1573821 7.624755e-06
## 13532   Jeff Foust                nicely    12 1573821 7.624755e-06
## 13533   Jeff Foust      nonproliferation    12 1573821 7.624755e-06
## 13534   Jeff Foust                  nssl    12 1573821 7.624755e-06
## 13535   Jeff Foust               nucleus    12 1573821 7.624755e-06
## 13536   Jeff Foust                oliver    12 1573821 7.624755e-06
## 13537   Jeff Foust             omniearth    12 1573821 7.624755e-06
## 13538   Jeff Foust             omnispace    12 1573821 7.624755e-06
## 13539   Jeff Foust                 onset    12 1573821 7.624755e-06
## 13540   Jeff Foust              ordinary    12 1573821 7.624755e-06
## 13541   Jeff Foust                owning    12 1573821 7.624755e-06
## 13542   Jeff Foust              o’hanley    12 1573821 7.624755e-06
## 13543   Jeff Foust                  pack    12 1573821 7.624755e-06
## 13544   Jeff Foust              panelist    12 1573821 7.624755e-06
## 13545   Jeff Foust                 perry    12 1573821 7.624755e-06
## 13546   Jeff Foust                  pods    12 1573821 7.624755e-06
## 13547   Jeff Foust                 poisk    12 1573821 7.624755e-06
## 13548   Jeff Foust                police    12 1573821 7.624755e-06
## 13549   Jeff Foust                powder    12 1573821 7.624755e-06
## 13550   Jeff Foust            precursors    12 1573821 7.624755e-06
## 13551   Jeff Foust                priced    12 1573821 7.624755e-06
## 13552   Jeff Foust            prohibited    12 1573821 7.624755e-06
## 13553   Jeff Foust            prosperity    12 1573821 7.624755e-06
## 13554   Jeff Foust                pulham    12 1573821 7.624755e-06
## 13555   Jeff Foust                 punch    12 1573821 7.624755e-06
## 13556   Jeff Foust                quoted    12 1573821 7.624755e-06
## 13557   Jeff Foust            radiometer    12 1573821 7.624755e-06
## 13558   Jeff Foust                  rail    12 1573821 7.624755e-06
## 13559   Jeff Foust             rapidscat    12 1573821 7.624755e-06
## 13560   Jeff Foust               recruit    12 1573821 7.624755e-06
## 13561   Jeff Foust            redemption    12 1573821 7.624755e-06
## 13562   Jeff Foust               refresh    12 1573821 7.624755e-06
## 13563   Jeff Foust             regulates    12 1573821 7.624755e-06
## 13564   Jeff Foust              reissner    12 1573821 7.624755e-06
## 13565   Jeff Foust            relocation    12 1573821 7.624755e-06
## 13566   Jeff Foust           repurposing    12 1573821 7.624755e-06
## 13567   Jeff Foust             resourced    12 1573821 7.624755e-06
## 13568   Jeff Foust              revisits    12 1573821 7.624755e-06
## 13569   Jeff Foust         revolutionary    12 1573821 7.624755e-06
## 13570   Jeff Foust                  rhus    12 1573821 7.624755e-06
## 13571   Jeff Foust                ripple    12 1573821 7.624755e-06
## 13572   Jeff Foust                  rosa    12 1573821 7.624755e-06
## 13573   Jeff Foust           rosenworcel    12 1573821 7.624755e-06
## 13574   Jeff Foust             rotations    12 1573821 7.624755e-06
## 13575   Jeff Foust               russell    12 1573821 7.624755e-06
## 13576   Jeff Foust                 ryder    12 1573821 7.624755e-06
## 13577   Jeff Foust                saocom    12 1573821 7.624755e-06
## 13578   Jeff Foust               schwarz    12 1573821 7.624755e-06
## 13579   Jeff Foust               sealing    12 1573821 7.624755e-06
## 13580   Jeff Foust            seamlessly    12 1573821 7.624755e-06
## 13581   Jeff Foust               secrecy    12 1573821 7.624755e-06
## 13582   Jeff Foust               shaping    12 1573821 7.624755e-06
## 13583   Jeff Foust               shelley    12 1573821 7.624755e-06
## 13584   Jeff Foust            shortening    12 1573821 7.624755e-06
## 13585   Jeff Foust             shortwave    12 1573821 7.624755e-06
## 13586   Jeff Foust          showstoppers    12 1573821 7.624755e-06
## 13587   Jeff Foust              signaled    12 1573821 7.624755e-06
## 13588   Jeff Foust          similarities    12 1573821 7.624755e-06
## 13589   Jeff Foust              simplify    12 1573821 7.624755e-06
## 13590   Jeff Foust               singled    12 1573821 7.624755e-06
## 13591   Jeff Foust           smartphones    12 1573821 7.624755e-06
## 13592   Jeff Foust                  sn11    12 1573821 7.624755e-06
## 13593   Jeff Foust                   sn3    12 1573821 7.624755e-06
## 13594   Jeff Foust                   sol    12 1573821 7.624755e-06
## 13595   Jeff Foust               sounder    12 1573821 7.624755e-06
## 13596   Jeff Foust                spaced    12 1573821 7.624755e-06
## 13597   Jeff Foust              spanning    12 1573821 7.624755e-06
## 13598   Jeff Foust               squalls    12 1573821 7.624755e-06
## 13599   Jeff Foust               squeeze    12 1573821 7.624755e-06
## 13600   Jeff Foust           stakeholder    12 1573821 7.624755e-06
## 13601   Jeff Foust             starshade    12 1573821 7.624755e-06
## 13602   Jeff Foust                 steer    12 1573821 7.624755e-06
## 13603   Jeff Foust                 stoke    12 1573821 7.624755e-06
## 13604   Jeff Foust                  stow    12 1573821 7.624755e-06
## 13605   Jeff Foust               strange    12 1573821 7.624755e-06
## 13606   Jeff Foust              stunning    12 1573821 7.624755e-06
## 13607   Jeff Foust        subcontractors    12 1573821 7.624755e-06
## 13608   Jeff Foust            submission    12 1573821 7.624755e-06
## 13609   Jeff Foust              survey’s    12 1573821 7.624755e-06
## 13610   Jeff Foust                   sxs    12 1573821 7.624755e-06
## 13611   Jeff Foust               tankers    12 1573821 7.624755e-06
## 13612   Jeff Foust                  tent    12 1573821 7.624755e-06
## 13613   Jeff Foust                termed    12 1573821 7.624755e-06
## 13614   Jeff Foust                terror    12 1573821 7.624755e-06
## 13615   Jeff Foust             testament    12 1573821 7.624755e-06
## 13616   Jeff Foust              tethered    12 1573821 7.624755e-06
## 13617   Jeff Foust            thursday’s    12 1573821 7.624755e-06
## 13618   Jeff Foust                 tinto    12 1573821 7.624755e-06
## 13619   Jeff Foust                  tito    12 1573821 7.624755e-06
## 13620   Jeff Foust              tolerant    12 1573821 7.624755e-06
## 13621   Jeff Foust                  tone    12 1573821 7.624755e-06
## 13622   Jeff Foust          tremendously    12 1573821 7.624755e-06
## 13623   Jeff Foust               trosper    12 1573821 7.624755e-06
## 13624   Jeff Foust               tumbled    12 1573821 7.624755e-06
## 13625   Jeff Foust                  ucar    12 1573821 7.624755e-06
## 13626   Jeff Foust                 udall    12 1573821 7.624755e-06
## 13627   Jeff Foust                 umbra    12 1573821 7.624755e-06
## 13628   Jeff Foust               unaware    12 1573821 7.624755e-06
## 13629   Jeff Foust                unfold    12 1573821 7.624755e-06
## 13630   Jeff Foust              uploaded    12 1573821 7.624755e-06
## 13631   Jeff Foust                  ursa    12 1573821 7.624755e-06
## 13632   Jeff Foust             validates    12 1573821 7.624755e-06
## 13633   Jeff Foust             variables    12 1573821 7.624755e-06
## 13634   Jeff Foust                vetted    12 1573821 7.624755e-06
## 13635   Jeff Foust            virginia’s    12 1573821 7.624755e-06
## 13636   Jeff Foust           voluntarily    12 1573821 7.624755e-06
## 13637   Jeff Foust                vought    12 1573821 7.624755e-06
## 13638   Jeff Foust                    vu    12 1573821 7.624755e-06
## 13639   Jeff Foust                 wales    12 1573821 7.624755e-06
## 13640   Jeff Foust                 wanda    12 1573821 7.624755e-06
## 13641   Jeff Foust                warmer    12 1573821 7.624755e-06
## 13642   Jeff Foust                warner    12 1573821 7.624755e-06
## 13643   Jeff Foust                 wentz    12 1573821 7.624755e-06
## 13644   Jeff Foust             workplace    12 1573821 7.624755e-06
## 13645   Jeff Foust                xprize    12 1573821 7.624755e-06
## 13646 Sandra Erwin                 1980s    12  716353 1.675152e-05
## 13647 Sandra Erwin                 2020s    12  716353 1.675152e-05
## 13648 Sandra Erwin                   4th    12  716353 1.675152e-05
## 13649 Sandra Erwin                    6a    12  716353 1.675152e-05
## 13650 Sandra Erwin                   a11    12  716353 1.675152e-05
## 13651 Sandra Erwin              absorbed    12  716353 1.675152e-05
## 13652 Sandra Erwin              adapting    12  716353 1.675152e-05
## 13653 Sandra Erwin                   aft    12  716353 1.675152e-05
## 13654 Sandra Erwin                   aia    12  716353 1.675152e-05
## 13655 Sandra Erwin               alarmed    12  716353 1.675152e-05
## 13656 Sandra Erwin                alerts    12  716353 1.675152e-05
## 13657 Sandra Erwin           allegations    12  716353 1.675152e-05
## 13658 Sandra Erwin              andersen    12  716353 1.675152e-05
## 13659 Sandra Erwin               anthony    12  716353 1.675152e-05
## 13660 Sandra Erwin           appearances    12  716353 1.675152e-05
## 13661 Sandra Erwin             appointee    12  716353 1.675152e-05
## 13662 Sandra Erwin               arachne    12  716353 1.675152e-05
## 13663 Sandra Erwin               armored    12  716353 1.675152e-05
## 13664 Sandra Erwin               arrival    12  716353 1.675152e-05
## 13665 Sandra Erwin                 aslon    12  716353 1.675152e-05
## 13666 Sandra Erwin              assemble    12  716353 1.675152e-05
## 13667 Sandra Erwin            asymmetric    12  716353 1.675152e-05
## 13668 Sandra Erwin                   atl    12  716353 1.675152e-05
## 13669 Sandra Erwin            attendance    12  716353 1.675152e-05
## 13670 Sandra Erwin               austere    12  716353 1.675152e-05
## 13671 Sandra Erwin              austin’s    12  716353 1.675152e-05
## 13672 Sandra Erwin              avionics    12  716353 1.675152e-05
## 13673 Sandra Erwin              awardees    12  716353 1.675152e-05
## 13674 Sandra Erwin             barrett’s    12  716353 1.675152e-05
## 13675 Sandra Erwin                 beyer    12  716353 1.675152e-05
## 13676 Sandra Erwin           billionaire    12  716353 1.675152e-05
## 13677 Sandra Erwin           birchenough    12  716353 1.675152e-05
## 13678 Sandra Erwin               blasted    12  716353 1.675152e-05
## 13679 Sandra Erwin               blocked    12  716353 1.675152e-05
## 13680 Sandra Erwin               bratton    12  716353 1.675152e-05
## 13681 Sandra Erwin             broadbent    12  716353 1.675152e-05
## 13682 Sandra Erwin                camden    12  716353 1.675152e-05
## 13683 Sandra Erwin            camouflage    12  716353 1.675152e-05
## 13684 Sandra Erwin              captains    12  716353 1.675152e-05
## 13685 Sandra Erwin             capturing    12  716353 1.675152e-05
## 13686 Sandra Erwin                  cars    12  716353 1.675152e-05
## 13687 Sandra Erwin          catastrophic    12  716353 1.675152e-05
## 13688 Sandra Erwin             celestial    12  716353 1.675152e-05
## 13689 Sandra Erwin           centralized    12  716353 1.675152e-05
## 13690 Sandra Erwin            certifying    12  716353 1.675152e-05
## 13691 Sandra Erwin               chaired    12  716353 1.675152e-05
## 13692 Sandra Erwin              cheyenne    12  716353 1.675152e-05
## 13693 Sandra Erwin                 child    12  716353 1.675152e-05
## 13694 Sandra Erwin           christensen    12  716353 1.675152e-05
## 13695 Sandra Erwin                 clare    12  716353 1.675152e-05
## 13696 Sandra Erwin               clutter    12  716353 1.675152e-05
## 13697 Sandra Erwin                 coats    12  716353 1.675152e-05
## 13698 Sandra Erwin             collapsed    12  716353 1.675152e-05
## 13699 Sandra Erwin               college    12  716353 1.675152e-05
## 13700 Sandra Erwin           concentrate    12  716353 1.675152e-05
## 13701 Sandra Erwin              confirms    12  716353 1.675152e-05
## 13702 Sandra Erwin           congressman    12  716353 1.675152e-05
## 13703 Sandra Erwin          continuously    12  716353 1.675152e-05
## 13704 Sandra Erwin                corner    12  716353 1.675152e-05
## 13705 Sandra Erwin              costello    12  716353 1.675152e-05
## 13706 Sandra Erwin               cothern    12  716353 1.675152e-05
## 13707 Sandra Erwin            countering    12  716353 1.675152e-05
## 13708 Sandra Erwin          counterparts    12  716353 1.675152e-05
## 13709 Sandra Erwin     counterproductive    12  716353 1.675152e-05
## 13710 Sandra Erwin                  craf    12  716353 1.675152e-05
## 13711 Sandra Erwin                 crazy    12  716353 1.675152e-05
## 13712 Sandra Erwin            critically    12  716353 1.675152e-05
## 13713 Sandra Erwin              damaging    12  716353 1.675152e-05
## 13714 Sandra Erwin              decisive    12  716353 1.675152e-05
## 13715 Sandra Erwin          declassified    12  716353 1.675152e-05
## 13716 Sandra Erwin          deliberately    12  716353 1.675152e-05
## 13717 Sandra Erwin         deliberations    12  716353 1.675152e-05
## 13718 Sandra Erwin                denial    12  716353 1.675152e-05
## 13719 Sandra Erwin             desautels    12  716353 1.675152e-05
## 13720 Sandra Erwin                   dig    12  716353 1.675152e-05
## 13721 Sandra Erwin             digitally    12  716353 1.675152e-05
## 13722 Sandra Erwin         disappointing    12  716353 1.675152e-05
## 13723 Sandra Erwin            disconnect    12  716353 1.675152e-05
## 13724 Sandra Erwin            discovered    12  716353 1.675152e-05
## 13725 Sandra Erwin             disruptor    12  716353 1.675152e-05
## 13726 Sandra Erwin         dissemination    12  716353 1.675152e-05
## 13727 Sandra Erwin           distraction    12  716353 1.675152e-05
## 13728 Sandra Erwin           diversified    12  716353 1.675152e-05
## 13729 Sandra Erwin             divisions    12  716353 1.675152e-05
## 13730 Sandra Erwin                   dog    12  716353 1.675152e-05
## 13731 Sandra Erwin             downlinks    12  716353 1.675152e-05
## 13732 Sandra Erwin                   dpa    12  716353 1.675152e-05
## 13733 Sandra Erwin               drafted    12  716353 1.675152e-05
## 13734 Sandra Erwin             economies    12  716353 1.675152e-05
## 13735 Sandra Erwin          efficiencies    12  716353 1.675152e-05
## 13736 Sandra Erwin                 elect    12  716353 1.675152e-05
## 13737 Sandra Erwin              emphatic    12  716353 1.675152e-05
## 13738 Sandra Erwin                 enact    12  716353 1.675152e-05
## 13739 Sandra Erwin            escalation    12  716353 1.675152e-05
## 13740 Sandra Erwin                exceed    12  716353 1.675152e-05
## 13741 Sandra Erwin             exchanges    12  716353 1.675152e-05
## 13742 Sandra Erwin         extraordinary    12  716353 1.675152e-05
## 13743 Sandra Erwin                 faber    12  716353 1.675152e-05
## 13744 Sandra Erwin               falling    12  716353 1.675152e-05
## 13745 Sandra Erwin                filing    12  716353 1.675152e-05
## 13746 Sandra Erwin                 fires    12  716353 1.675152e-05
## 13747 Sandra Erwin                fixing    12  716353 1.675152e-05
## 13748 Sandra Erwin                flawed    12  716353 1.675152e-05
## 13749 Sandra Erwin           forecasting    12  716353 1.675152e-05
## 13750 Sandra Erwin           foreseeable    12  716353 1.675152e-05
## 13751 Sandra Erwin              founding    12  716353 1.675152e-05
## 13752 Sandra Erwin                  fy20    12  716353 1.675152e-05
## 13753 Sandra Erwin                gaming    12  716353 1.675152e-05
## 13754 Sandra Erwin                 gears    12  716353 1.675152e-05
## 13755 Sandra Erwin               gedmark    12  716353 1.675152e-05
## 13756 Sandra Erwin                geoeye    12  716353 1.675152e-05
## 13757 Sandra Erwin             geolocate    12  716353 1.675152e-05
## 13758 Sandra Erwin           geolocation    12  716353 1.675152e-05
## 13759 Sandra Erwin                gordon    12  716353 1.675152e-05
## 13760 Sandra Erwin              graphics    12  716353 1.675152e-05
## 13761 Sandra Erwin             greenland    12  716353 1.675152e-05
## 13762 Sandra Erwin               greiner    12  716353 1.675152e-05
## 13763 Sandra Erwin                   hey    12  716353 1.675152e-05
## 13764 Sandra Erwin                holmes    12  716353 1.675152e-05
## 13765 Sandra Erwin             honeywell    12  716353 1.675152e-05
## 13766 Sandra Erwin                    ia    12  716353 1.675152e-05
## 13767 Sandra Erwin            identifies    12  716353 1.675152e-05
## 13768 Sandra Erwin          incompatible    12  716353 1.675152e-05
## 13769 Sandra Erwin          inefficiency    12  716353 1.675152e-05
## 13770 Sandra Erwin               inertia    12  716353 1.675152e-05
## 13771 Sandra Erwin            inevitable    12  716353 1.675152e-05
## 13772 Sandra Erwin                ingram    12  716353 1.675152e-05
## 13773 Sandra Erwin             insertion    12  716353 1.675152e-05
## 13774 Sandra Erwin          insufficient    12  716353 1.675152e-05
## 13775 Sandra Erwin              integral    12  716353 1.675152e-05
## 13776 Sandra Erwin             intention    12  716353 1.675152e-05
## 13777 Sandra Erwin         investigating    12  716353 1.675152e-05
## 13778 Sandra Erwin               invests    12  716353 1.675152e-05
## 13779 Sandra Erwin                israel    12  716353 1.675152e-05
## 13780 Sandra Erwin               issuing    12  716353 1.675152e-05
## 13781 Sandra Erwin             jaskolski    12  716353 1.675152e-05
## 13782 Sandra Erwin                jeremy    12  716353 1.675152e-05
## 13783 Sandra Erwin               journal    12  716353 1.675152e-05
## 13784 Sandra Erwin                    jr    12  716353 1.675152e-05
## 13785 Sandra Erwin                 judge    12  716353 1.675152e-05
## 13786 Sandra Erwin            karangelen    12  716353 1.675152e-05
## 13787 Sandra Erwin                  kent    12  716353 1.675152e-05
## 13788 Sandra Erwin                kernan    12  716353 1.675152e-05
## 13789 Sandra Erwin            kienberger    12  716353 1.675152e-05
## 13790 Sandra Erwin               korea’s    12  716353 1.675152e-05
## 13791 Sandra Erwin               laidley    12  716353 1.675152e-05
## 13792 Sandra Erwin               lasting    12  716353 1.675152e-05
## 13793 Sandra Erwin            lauderback    12  716353 1.675152e-05
## 13794 Sandra Erwin                 leahy    12  716353 1.675152e-05
## 13795 Sandra Erwin                leaner    12  716353 1.675152e-05
## 13796 Sandra Erwin                leased    12  716353 1.675152e-05
## 13797 Sandra Erwin                   leg    12  716353 1.675152e-05
## 13798 Sandra Erwin                  lies    12  716353 1.675152e-05
## 13799 Sandra Erwin               lifting    12  716353 1.675152e-05
## 13800 Sandra Erwin                listen    12  716353 1.675152e-05
## 13801 Sandra Erwin                living    12  716353 1.675152e-05
## 13802 Sandra Erwin                 maker    12  716353 1.675152e-05
## 13803 Sandra Erwin       maneuverability    12  716353 1.675152e-05
## 13804 Sandra Erwin              mccollum    12  716353 1.675152e-05
## 13805 Sandra Erwin             mccormick    12  716353 1.675152e-05
## 13806 Sandra Erwin             mechanics    12  716353 1.675152e-05
## 13807 Sandra Erwin               melcher    12  716353 1.675152e-05
## 13808 Sandra Erwin                 metal    12  716353 1.675152e-05
## 13809 Sandra Erwin               methane    12  716353 1.675152e-05
## 13810 Sandra Erwin            milestones    12  716353 1.675152e-05
## 13811 Sandra Erwin            minimizing    12  716353 1.675152e-05
## 13812 Sandra Erwin                 minor    12  716353 1.675152e-05
## 13813 Sandra Erwin              monitors    12  716353 1.675152e-05
## 13814 Sandra Erwin                 mozer    12  716353 1.675152e-05
## 13815 Sandra Erwin                   n.m    12  716353 1.675152e-05
## 13816 Sandra Erwin             networked    12  716353 1.675152e-05
## 13817 Sandra Erwin                    ng    12  716353 1.675152e-05
## 13818 Sandra Erwin                notion    12  716353 1.675152e-05
## 13819 Sandra Erwin              numbered    12  716353 1.675152e-05
## 13820 Sandra Erwin              objected    12  716353 1.675152e-05
## 13821 Sandra Erwin            obligation    12  716353 1.675152e-05
## 13822 Sandra Erwin                  odds    12  716353 1.675152e-05
## 13823 Sandra Erwin              overhaul    12  716353 1.675152e-05
## 13824 Sandra Erwin              overturn    12  716353 1.675152e-05
## 13825 Sandra Erwin                   pai    12  716353 1.675152e-05
## 13826 Sandra Erwin                patent    12  716353 1.675152e-05
## 13827 Sandra Erwin             perfectly    12  716353 1.675152e-05
## 13828 Sandra Erwin               pivotal    12  716353 1.675152e-05
## 13829 Sandra Erwin                 poole    12  716353 1.675152e-05
## 13830 Sandra Erwin            preventing    12  716353 1.675152e-05
## 13831 Sandra Erwin           prioritized    12  716353 1.675152e-05
## 13832 Sandra Erwin           progressing    12  716353 1.675152e-05
## 13833 Sandra Erwin             prohibits    12  716353 1.675152e-05
## 13834 Sandra Erwin              promised    12  716353 1.675152e-05
## 13835 Sandra Erwin             protested    12  716353 1.675152e-05
## 13836 Sandra Erwin            purchasing    12  716353 1.675152e-05
## 13837 Sandra Erwin                  qzss    12  716353 1.675152e-05
## 13838 Sandra Erwin               radiant    12  716353 1.675152e-05
## 13839 Sandra Erwin                  raic    12  716353 1.675152e-05
## 13840 Sandra Erwin               realign    12  716353 1.675152e-05
## 13841 Sandra Erwin           realization    12  716353 1.675152e-05
## 13842 Sandra Erwin                 realm    12  716353 1.675152e-05
## 13843 Sandra Erwin             recession    12  716353 1.675152e-05
## 13844 Sandra Erwin            reconciled    12  716353 1.675152e-05
## 13845 Sandra Erwin              redesign    12  716353 1.675152e-05
## 13846 Sandra Erwin            reductions    12  716353 1.675152e-05
## 13847 Sandra Erwin               refined    12  716353 1.675152e-05
## 13848 Sandra Erwin              reliably    12  716353 1.675152e-05
## 13849 Sandra Erwin               renewed    12  716353 1.675152e-05
## 13850 Sandra Erwin           represented    12  716353 1.675152e-05
## 13851 Sandra Erwin            repurposed    12  716353 1.675152e-05
## 13852 Sandra Erwin           responsibly    12  716353 1.675152e-05
## 13853 Sandra Erwin            reversible    12  716353 1.675152e-05
## 13854 Sandra Erwin         revolutionary    12  716353 1.675152e-05
## 13855 Sandra Erwin                  rhea    12  716353 1.675152e-05
## 13856 Sandra Erwin                 rigid    12  716353 1.675152e-05
## 13857 Sandra Erwin                  roam    12  716353 1.675152e-05
## 13858 Sandra Erwin             robertson    12  716353 1.675152e-05
## 13859 Sandra Erwin                 rouge    12  716353 1.675152e-05
## 13860 Sandra Erwin               rushing    12  716353 1.675152e-05
## 13861 Sandra Erwin                   s28    12  716353 1.675152e-05
## 13862 Sandra Erwin                saturn    12  716353 1.675152e-05
## 13863 Sandra Erwin                 saudi    12  716353 1.675152e-05
## 13864 Sandra Erwin              scanning    12  716353 1.675152e-05
## 13865 Sandra Erwin              schaffer    12  716353 1.675152e-05
## 13866 Sandra Erwin             schingler    12  716353 1.675152e-05
## 13867 Sandra Erwin               schnell    12  716353 1.675152e-05
## 13868 Sandra Erwin              sciences    12  716353 1.675152e-05
## 13869 Sandra Erwin             scientist    12  716353 1.675152e-05
## 13870 Sandra Erwin                 seams    12  716353 1.675152e-05
## 13871 Sandra Erwin               secrecy    12  716353 1.675152e-05
## 13872 Sandra Erwin               selects    12  716353 1.675152e-05
## 13873 Sandra Erwin                 shank    12  716353 1.675152e-05
## 13874 Sandra Erwin               shijian    12  716353 1.675152e-05
## 13875 Sandra Erwin             sidelines    12  716353 1.675152e-05
## 13876 Sandra Erwin          significance    12  716353 1.675152e-05
## 13877 Sandra Erwin               signing    12  716353 1.675152e-05
## 13878 Sandra Erwin                 smoke    12  716353 1.675152e-05
## 13879 Sandra Erwin                smooth    12  716353 1.675152e-05
## 13880 Sandra Erwin               solicit    12  716353 1.675152e-05
## 13881 Sandra Erwin                sorted    12  716353 1.675152e-05
## 13882 Sandra Erwin            speculated    12  716353 1.675152e-05
## 13883 Sandra Erwin             spideroak    12  716353 1.675152e-05
## 13884 Sandra Erwin                stance    12  716353 1.675152e-05
## 13885 Sandra Erwin                 steer    12  716353 1.675152e-05
## 13886 Sandra Erwin               stopgap    12  716353 1.675152e-05
## 13887 Sandra Erwin                stored    12  716353 1.675152e-05
## 13888 Sandra Erwin               streams    12  716353 1.675152e-05
## 13889 Sandra Erwin             stressing    12  716353 1.675152e-05
## 13890 Sandra Erwin               submits    12  716353 1.675152e-05
## 13891 Sandra Erwin             sunnyvale    12  716353 1.675152e-05
## 13892 Sandra Erwin                surrey    12  716353 1.675152e-05
## 13893 Sandra Erwin                symbol    12  716353 1.675152e-05
## 13894 Sandra Erwin           synchronize    12  716353 1.675152e-05
## 13895 Sandra Erwin                 t1des    12  716353 1.675152e-05
## 13896 Sandra Erwin               tension    12  716353 1.675152e-05
## 13897 Sandra Erwin              thruster    12  716353 1.675152e-05
## 13898 Sandra Erwin                tirman    12  716353 1.675152e-05
## 13899 Sandra Erwin                  tone    12  716353 1.675152e-05
## 13900 Sandra Erwin              trackers    12  716353 1.675152e-05
## 13901 Sandra Erwin      transformational    12  716353 1.675152e-05
## 13902 Sandra Erwin              treasury    12  716353 1.675152e-05
## 13903 Sandra Erwin               trivial    12  716353 1.675152e-05
## 13904 Sandra Erwin            tuberville    12  716353 1.675152e-05
## 13905 Sandra Erwin              unknowns    12  716353 1.675152e-05
## 13906 Sandra Erwin           unrealistic    12  716353 1.675152e-05
## 13907 Sandra Erwin              updating    12  716353 1.675152e-05
## 13908 Sandra Erwin                vacuum    12  716353 1.675152e-05
## 13909 Sandra Erwin             validates    12  716353 1.675152e-05
## 13910 Sandra Erwin              vanherck    12  716353 1.675152e-05
## 13911 Sandra Erwin           voluntarily    12  716353 1.675152e-05
## 13912 Sandra Erwin                  voss    12  716353 1.675152e-05
## 13913 Sandra Erwin             voyager’s    12  716353 1.675152e-05
## 13914 Sandra Erwin              warriors    12  716353 1.675152e-05
## 13915 Sandra Erwin                 wayne    12  716353 1.675152e-05
## 13916 Sandra Erwin                weekly    12  716353 1.675152e-05
## 13917 Sandra Erwin                 welch    12  716353 1.675152e-05
## 13918 Sandra Erwin                 who’s    12  716353 1.675152e-05
## 13919 Sandra Erwin             withstand    12  716353 1.675152e-05
## 13920   Jeff Foust                 100th    11 1573821 6.989359e-06
## 13921   Jeff Foust                  11th    11 1573821 6.989359e-06
## 13922   Jeff Foust                  17th    11 1573821 6.989359e-06
## 13923   Jeff Foust                  2.1b    11 1573821 6.989359e-06
## 13924   Jeff Foust                  37th    11 1573821 6.989359e-06
## 13925   Jeff Foust                  65th    11 1573821 6.989359e-06
## 13926   Jeff Foust                 abide    11 1573821 6.989359e-06
## 13927   Jeff Foust             abilities    11 1573821 6.989359e-06
## 13928   Jeff Foust        accelerometers    11 1573821 6.989359e-06
## 13929   Jeff Foust                accord    11 1573821 6.989359e-06
## 13930   Jeff Foust                  aces    11 1573821 6.989359e-06
## 13931   Jeff Foust                 acorn    11 1573821 6.989359e-06
## 13932   Jeff Foust                  acts    11 1573821 6.989359e-06
## 13933   Jeff Foust                 adams    11 1573821 6.989359e-06
## 13934   Jeff Foust             additions    11 1573821 6.989359e-06
## 13935   Jeff Foust             adjourned    11 1573821 6.989359e-06
## 13936   Jeff Foust          administered    11 1573821 6.989359e-06
## 13937   Jeff Foust          advantageous    11 1573821 6.989359e-06
## 13938   Jeff Foust           adversaries    11 1573821 6.989359e-06
## 13939   Jeff Foust          aerodynamics    11 1573821 6.989359e-06
## 13940   Jeff Foust              affirmed    11 1573821 6.989359e-06
## 13941   Jeff Foust                afraid    11 1573821 6.989359e-06
## 13942   Jeff Foust                  afss    11 1573821 6.989359e-06
## 13943   Jeff Foust             afterward    11 1573821 6.989359e-06
## 13944   Jeff Foust                 ahmed    11 1573821 6.989359e-06
## 13945   Jeff Foust             airliners    11 1573821 6.989359e-06
## 13946   Jeff Foust                   ali    11 1573821 6.989359e-06
## 13947   Jeff Foust                aliens    11 1573821 6.989359e-06
## 13948   Jeff Foust               alqarni    11 1573821 6.989359e-06
## 13949   Jeff Foust              amending    11 1573821 6.989359e-06
## 13950   Jeff Foust                 amiri    11 1573821 6.989359e-06
## 13951   Jeff Foust               analogy    11 1573821 6.989359e-06
## 13952   Jeff Foust               ancient    11 1573821 6.989359e-06
## 13953   Jeff Foust                angles    11 1573821 6.989359e-06
## 13954   Jeff Foust               antonio    11 1573821 6.989359e-06
## 13955   Jeff Foust              anywaves    11 1573821 6.989359e-06
## 13956   Jeff Foust             appealing    11 1573821 6.989359e-06
## 13957   Jeff Foust             arbitrary    11 1573821 6.989359e-06
## 13958   Jeff Foust                  ares    11 1573821 6.989359e-06
## 13959   Jeff Foust                 arrow    11 1573821 6.989359e-06
## 13960   Jeff Foust             ascending    11 1573821 6.989359e-06
## 13961   Jeff Foust            auditorium    11 1573821 6.989359e-06
## 13962   Jeff Foust              automate    11 1573821 6.989359e-06
## 13963   Jeff Foust                 await    11 1573821 6.989359e-06
## 13964   Jeff Foust              backbone    11 1573821 6.989359e-06
## 13965   Jeff Foust             backwards    11 1573821 6.989359e-06
## 13966   Jeff Foust             balancing    11 1573821 6.989359e-06
## 13967   Jeff Foust            ballooning    11 1573821 6.989359e-06
## 13968   Jeff Foust             beachhead    11 1573821 6.989359e-06
## 13969   Jeff Foust                beamed    11 1573821 6.989359e-06
## 13970   Jeff Foust               beating    11 1573821 6.989359e-06
## 13971   Jeff Foust                beidou    11 1573821 6.989359e-06
## 13972   Jeff Foust             benefited    11 1573821 6.989359e-06
## 13973   Jeff Foust               bennett    11 1573821 6.989359e-06
## 13974   Jeff Foust               betting    11 1573821 6.989359e-06
## 13975   Jeff Foust                 blast    11 1573821 6.989359e-06
## 13976   Jeff Foust               boarded    11 1573821 6.989359e-06
## 13977   Jeff Foust               boehner    11 1573821 6.989359e-06
## 13978   Jeff Foust                 bonus    11 1573821 6.989359e-06
## 13979   Jeff Foust                  bowl    11 1573821 6.989359e-06
## 13980   Jeff Foust              brussels    11 1573821 6.989359e-06
## 13981   Jeff Foust               bubbles    11 1573821 6.989359e-06
## 13982   Jeff Foust                bullet    11 1573821 6.989359e-06
## 13983   Jeff Foust                  bump    11 1573821 6.989359e-06
## 13984   Jeff Foust            capitalize    11 1573821 6.989359e-06
## 13985   Jeff Foust                  card    11 1573821 6.989359e-06
## 13986   Jeff Foust                 casey    11 1573821 6.989359e-06
## 13987   Jeff Foust                 cecil    11 1573821 6.989359e-06
## 13988   Jeff Foust                ceriss    11 1573821 6.989359e-06
## 13989   Jeff Foust             chemicals    11 1573821 6.989359e-06
## 13990   Jeff Foust            children’s    11 1573821 6.989359e-06
## 13991   Jeff Foust              chilling    11 1573821 6.989359e-06
## 13992   Jeff Foust             christine    11 1573821 6.989359e-06
## 13993   Jeff Foust                 chuck    11 1573821 6.989359e-06
## 13994   Jeff Foust         civilizations    11 1573821 6.989359e-06
## 13995   Jeff Foust               clearer    11 1573821 6.989359e-06
## 13996   Jeff Foust                 climb    11 1573821 6.989359e-06
## 13997   Jeff Foust               coastal    11 1573821 6.989359e-06
## 13998   Jeff Foust                  cole    11 1573821 6.989359e-06
## 13999   Jeff Foust             collapsed    11 1573821 6.989359e-06
## 14000   Jeff Foust              collided    11 1573821 6.989359e-06
## 14001   Jeff Foust          compromising    11 1573821 6.989359e-06
## 14002   Jeff Foust               compton    11 1573821 6.989359e-06
## 14003   Jeff Foust              comstock    11 1573821 6.989359e-06
## 14004   Jeff Foust           concentrate    11 1573821 6.989359e-06
## 14005   Jeff Foust       congressionally    11 1573821 6.989359e-06
## 14006   Jeff Foust           constitutes    11 1573821 6.989359e-06
## 14007   Jeff Foust             consumers    11 1573821 6.989359e-06
## 14008   Jeff Foust          contaminated    11 1573821 6.989359e-06
## 14009   Jeff Foust         contemplating    11 1573821 6.989359e-06
## 14010   Jeff Foust            convenient    11 1573821 6.989359e-06
## 14011   Jeff Foust            creativity    11 1573821 6.989359e-06
## 14012   Jeff Foust                crowds    11 1573821 6.989359e-06
## 14013   Jeff Foust                 crust    11 1573821 6.989359e-06
## 14014   Jeff Foust        cryptocurrency    11 1573821 6.989359e-06
## 14015   Jeff Foust                 csf’s    11 1573821 6.989359e-06
## 14016   Jeff Foust                   csp    11 1573821 6.989359e-06
## 14017   Jeff Foust               curious    11 1573821 6.989359e-06
## 14018   Jeff Foust                    da    11 1573821 6.989359e-06
## 14019   Jeff Foust                danish    11 1573821 6.989359e-06
## 14020   Jeff Foust                 dante    11 1573821 6.989359e-06
## 14021   Jeff Foust                darker    11 1573821 6.989359e-06
## 14022   Jeff Foust                denial    11 1573821 6.989359e-06
## 14023   Jeff Foust            departures    11 1573821 6.989359e-06
## 14024   Jeff Foust              depleted    11 1573821 6.989359e-06
## 14025   Jeff Foust                depots    11 1573821 6.989359e-06
## 14026   Jeff Foust              descends    11 1573821 6.989359e-06
## 14027   Jeff Foust             deviation    11 1573821 6.989359e-06
## 14028   Jeff Foust              devoting    11 1573821 6.989359e-06
## 14029   Jeff Foust                 diane    11 1573821 6.989359e-06
## 14030   Jeff Foust                   die    11 1573821 6.989359e-06
## 14031   Jeff Foust            diligently    11 1573821 6.989359e-06
## 14032   Jeff Foust           diminishing    11 1573821 6.989359e-06
## 14033   Jeff Foust          disagreement    11 1573821 6.989359e-06
## 14034   Jeff Foust             disasters    11 1573821 6.989359e-06
## 14035   Jeff Foust            disclosure    11 1573821 6.989359e-06
## 14036   Jeff Foust           discontinue    11 1573821 6.989359e-06
## 14037   Jeff Foust           distinctive    11 1573821 6.989359e-06
## 14038   Jeff Foust         distinguished    11 1573821 6.989359e-06
## 14039   Jeff Foust           diversified    11 1573821 6.989359e-06
## 14040   Jeff Foust                domino    11 1573821 6.989359e-06
## 14041   Jeff Foust                donate    11 1573821 6.989359e-06
## 14042   Jeff Foust              donation    11 1573821 6.989359e-06
## 14043   Jeff Foust               drivers    11 1573821 6.989359e-06
## 14044   Jeff Foust             dumbacher    11 1573821 6.989359e-06
## 14045   Jeff Foust           duplicative    11 1573821 6.989359e-06
## 14046   Jeff Foust             eagleview    11 1573821 6.989359e-06
## 14047   Jeff Foust                  earl    11 1573821 6.989359e-06
## 14048   Jeff Foust             earthcare    11 1573821 6.989359e-06
## 14049   Jeff Foust            earthquake    11 1573821 6.989359e-06
## 14050   Jeff Foust               educate    11 1573821 6.989359e-06
## 14051   Jeff Foust              elevator    11 1573821 6.989359e-06
## 14052   Jeff Foust               emailed    11 1573821 6.989359e-06
## 14053   Jeff Foust                emails    11 1573821 6.989359e-06
## 14054   Jeff Foust               emerges    11 1573821 6.989359e-06
## 14055   Jeff Foust                   emu    11 1573821 6.989359e-06
## 14056   Jeff Foust          encountering    11 1573821 6.989359e-06
## 14057   Jeff Foust            encounters    11 1573821 6.989359e-06
## 14058   Jeff Foust                  enzi    11 1573821 6.989359e-06
## 14059   Jeff Foust                eroded    11 1573821 6.989359e-06
## 14060   Jeff Foust              ethereum    11 1573821 6.989359e-06
## 14061   Jeff Foust              europa’s    11 1573821 6.989359e-06
## 14062   Jeff Foust             europeans    11 1573821 6.989359e-06
## 14063   Jeff Foust                 euspa    11 1573821 6.989359e-06
## 14064   Jeff Foust              everyday    11 1573821 6.989359e-06
## 14065   Jeff Foust            everyone’s    11 1573821 6.989359e-06
## 14066   Jeff Foust               evident    11 1573821 6.989359e-06
## 14067   Jeff Foust              examines    11 1573821 6.989359e-06
## 14068   Jeff Foust            exchanging    11 1573821 6.989359e-06
## 14069   Jeff Foust                exempt    11 1573821 6.989359e-06
## 14070   Jeff Foust          explanations    11 1573821 6.989359e-06
## 14071   Jeff Foust              explored    11 1573821 6.989359e-06
## 14072   Jeff Foust                 faint    11 1573821 6.989359e-06
## 14073   Jeff Foust                 fermi    11 1573821 6.989359e-06
## 14074   Jeff Foust                fierce    11 1573821 6.989359e-06
## 14075   Jeff Foust                 filev    11 1573821 6.989359e-06
## 14076   Jeff Foust                 fills    11 1573821 6.989359e-06
## 14077   Jeff Foust                finite    11 1573821 6.989359e-06
## 14078   Jeff Foust               finnish    11 1573821 6.989359e-06
## 14079   Jeff Foust                  fisk    11 1573821 6.989359e-06
## 14080   Jeff Foust               footage    11 1573821 6.989359e-06
## 14081   Jeff Foust                fought    11 1573821 6.989359e-06
## 14082   Jeff Foust               freeman    11 1573821 6.989359e-06
## 14083   Jeff Foust            freilich’s    11 1573821 6.989359e-06
## 14084   Jeff Foust               gaseous    11 1573821 6.989359e-06
## 14085   Jeff Foust                  gate    11 1573821 6.989359e-06
## 14086   Jeff Foust                    gk    11 1573821 6.989359e-06
## 14087   Jeff Foust               glenn’s    11 1573821 6.989359e-06
## 14088   Jeff Foust                  gram    11 1573821 6.989359e-06
## 14089   Jeff Foust              graphics    11 1573821 6.989359e-06
## 14090   Jeff Foust            gyroscopes    11 1573821 6.989359e-06
## 14091   Jeff Foust               hanging    11 1573821 6.989359e-06
## 14092   Jeff Foust                   hat    11 1573821 6.989359e-06
## 14093   Jeff Foust                  heck    11 1573821 6.989359e-06
## 14094   Jeff Foust              heinrich    11 1573821 6.989359e-06
## 14095   Jeff Foust                herald    11 1573821 6.989359e-06
## 14096   Jeff Foust                  he’d    11 1573821 6.989359e-06
## 14097   Jeff Foust                hirano    11 1573821 6.989359e-06
## 14098   Jeff Foust                 hires    11 1573821 6.989359e-06
## 14099   Jeff Foust                hoburg    11 1573821 6.989359e-06
## 14100   Jeff Foust                 homes    11 1573821 6.989359e-06
## 14101   Jeff Foust                 honda    11 1573821 6.989359e-06
## 14102   Jeff Foust            huntington    11 1573821 6.989359e-06
## 14103   Jeff Foust           hydrocarbon    11 1573821 6.989359e-06
## 14104   Jeff Foust               igniter    11 1573821 6.989359e-06
## 14105   Jeff Foust               imagers    11 1573821 6.989359e-06
## 14106   Jeff Foust              improper    11 1573821 6.989359e-06
## 14107   Jeff Foust             inception    11 1573821 6.989359e-06
## 14108   Jeff Foust             inclusive    11 1573821 6.989359e-06
## 14109   Jeff Foust            indirectly    11 1573821 6.989359e-06
## 14110   Jeff Foust              informal    11 1573821 6.989359e-06
## 14111   Jeff Foust              infusion    11 1573821 6.989359e-06
## 14112   Jeff Foust              injuring    11 1573821 6.989359e-06
## 14113   Jeff Foust            insolvency    11 1573821 6.989359e-06
## 14114   Jeff Foust            institutes    11 1573821 6.989359e-06
## 14115   Jeff Foust            insulation    11 1573821 6.989359e-06
## 14116   Jeff Foust                insure    11 1573821 6.989359e-06
## 14117   Jeff Foust              interact    11 1573821 6.989359e-06
## 14118   Jeff Foust                irvine    11 1573821 6.989359e-06
## 14119   Jeff Foust                 issnl    11 1573821 6.989359e-06
## 14120   Jeff Foust               jackson    11 1573821 6.989359e-06
## 14121   Jeff Foust          jeopardizing    11 1573821 6.989359e-06
## 14122   Jeff Foust                 jspoc    11 1573821 6.989359e-06
## 14123   Jeff Foust               jumping    11 1573821 6.989359e-06
## 14124   Jeff Foust             katherine    11 1573821 6.989359e-06
## 14125   Jeff Foust                 kelso    11 1573821 6.989359e-06
## 14126   Jeff Foust               kessler    11 1573821 6.989359e-06
## 14127   Jeff Foust             kickstart    11 1573821 6.989359e-06
## 14128   Jeff Foust                 kihei    11 1573821 6.989359e-06
## 14129   Jeff Foust                 kubos    11 1573821 6.989359e-06
## 14130   Jeff Foust                    l3    11 1573821 6.989359e-06
## 14131   Jeff Foust              lamented    11 1573821 6.989359e-06
## 14132   Jeff Foust                larsen    11 1573821 6.989359e-06
## 14133   Jeff Foust            legitimate    11 1573821 6.989359e-06
## 14134   Jeff Foust             licensees    11 1573821 6.989359e-06
## 14135   Jeff Foust             liciacube    11 1573821 6.989359e-06
## 14136   Jeff Foust                 lidar    11 1573821 6.989359e-06
## 14137   Jeff Foust               logsdon    11 1573821 6.989359e-06
## 14138   Jeff Foust             longevity    11 1573821 6.989359e-06
## 14139   Jeff Foust                 louis    11 1573821 6.989359e-06
## 14140   Jeff Foust             loverro’s    11 1573821 6.989359e-06
## 14141   Jeff Foust                lowers    11 1573821 6.989359e-06
## 14142   Jeff Foust                   lte    11 1573821 6.989359e-06
## 14143   Jeff Foust              mariners    11 1573821 6.989359e-06
## 14144   Jeff Foust                masses    11 1573821 6.989359e-06
## 14145   Jeff Foust             massively    11 1573821 6.989359e-06
## 14146   Jeff Foust              maturing    11 1573821 6.989359e-06
## 14147   Jeff Foust              mcknight    11 1573821 6.989359e-06
## 14148   Jeff Foust             meteorite    11 1573821 6.989359e-06
## 14149   Jeff Foust       micrometeoroids    11 1573821 6.989359e-06
## 14150   Jeff Foust                 milky    11 1573821 6.989359e-06
## 14151   Jeff Foust          milliseconds    11 1573821 6.989359e-06
## 14152   Jeff Foust                   moa    11 1573821 6.989359e-06
## 14153   Jeff Foust        monopropellant    11 1573821 6.989359e-06
## 14154   Jeff Foust             morhard’s    11 1573821 6.989359e-06
## 14155   Jeff Foust                 moxie    11 1573821 6.989359e-06
## 14156   Jeff Foust            mysterious    11 1573821 6.989359e-06
## 14157   Jeff Foust                  nasr    11 1573821 6.989359e-06
## 14158   Jeff Foust               nearest    11 1573821 6.989359e-06
## 14159   Jeff Foust            newsletter    11 1573821 6.989359e-06
## 14160   Jeff Foust               nigeria    11 1573821 6.989359e-06
## 14161   Jeff Foust           nightingale    11 1573821 6.989359e-06
## 14162   Jeff Foust                nikkei    11 1573821 6.989359e-06
## 14163   Jeff Foust          northeastern    11 1573821 6.989359e-06
## 14164   Jeff Foust             norwegian    11 1573821 6.989359e-06
## 14165   Jeff Foust             novitskiy    11 1573821 6.989359e-06
## 14166   Jeff Foust                   npp    11 1573821 6.989359e-06
## 14167   Jeff Foust                ntsb’s    11 1573821 6.989359e-06
## 14168   Jeff Foust             obligated    11 1573821 6.989359e-06
## 14169   Jeff Foust          occultations    11 1573821 6.989359e-06
## 14170   Jeff Foust             offensive    11 1573821 6.989359e-06
## 14171   Jeff Foust               okumura    11 1573821 6.989359e-06
## 14172   Jeff Foust                  omac    11 1573821 6.989359e-06
## 14173   Jeff Foust                openly    11 1573821 6.989359e-06
## 14174   Jeff Foust            organizing    11 1573821 6.989359e-06
## 14175   Jeff Foust               other’s    11 1573821 6.989359e-06
## 14176   Jeff Foust            outfitting    11 1573821 6.989359e-06
## 14177   Jeff Foust          overshadowed    11 1573821 6.989359e-06
## 14178   Jeff Foust              overturn    11 1573821 6.989359e-06
## 14179   Jeff Foust                pacing    11 1573821 6.989359e-06
## 14180   Jeff Foust                 pairs    11 1573821 6.989359e-06
## 14181   Jeff Foust               palermo    11 1573821 6.989359e-06
## 14182   Jeff Foust                panesi    11 1573821 6.989359e-06
## 14183   Jeff Foust                   pat    11 1573821 6.989359e-06
## 14184   Jeff Foust               patches    11 1573821 6.989359e-06
## 14185   Jeff Foust                  pave    11 1573821 6.989359e-06
## 14186   Jeff Foust                   pdu    11 1573821 6.989359e-06
## 14187   Jeff Foust                   pga    11 1573821 6.989359e-06
## 14188   Jeff Foust                philae    11 1573821 6.989359e-06
## 14189   Jeff Foust                 picks    11 1573821 6.989359e-06
## 14190   Jeff Foust               pivotal    11 1573821 6.989359e-06
## 14191   Jeff Foust              plumbing    11 1573821 6.989359e-06
## 14192   Jeff Foust          policymakers    11 1573821 6.989359e-06
## 14193   Jeff Foust              portable    11 1573821 6.989359e-06
## 14194   Jeff Foust                postal    11 1573821 6.989359e-06
## 14195   Jeff Foust            presidency    11 1573821 6.989359e-06
## 14196   Jeff Foust            prevention    11 1573821 6.989359e-06
## 14197   Jeff Foust              printers    11 1573821 6.989359e-06
## 14198   Jeff Foust           proactively    11 1573821 6.989359e-06
## 14199   Jeff Foust               propane    11 1573821 6.989359e-06
## 14200   Jeff Foust             propelled    11 1573821 6.989359e-06
## 14201   Jeff Foust                proves    11 1573821 6.989359e-06
## 14202   Jeff Foust                  psca    11 1573821 6.989359e-06
## 14203   Jeff Foust              psyche’s    11 1573821 6.989359e-06
## 14204   Jeff Foust               puzzled    11 1573821 6.989359e-06
## 14205   Jeff Foust            quantities    11 1573821 6.989359e-06
## 14206   Jeff Foust                 quote    11 1573821 6.989359e-06
## 14207   Jeff Foust                radian    11 1573821 6.989359e-06
## 14208   Jeff Foust              radiance    11 1573821 6.989359e-06
## 14209   Jeff Foust           radioactive    11 1573821 6.989359e-06
## 14210   Jeff Foust                radios    11 1573821 6.989359e-06
## 14211   Jeff Foust                  rand    11 1573821 6.989359e-06
## 14212   Jeff Foust               reacted    11 1573821 6.989359e-06
## 14213   Jeff Foust            reevaluate    11 1573821 6.989359e-06
## 14214   Jeff Foust             reflector    11 1573821 6.989359e-06
## 14215   Jeff Foust          refractivity    11 1573821 6.989359e-06
## 14216   Jeff Foust             reiterate    11 1573821 6.989359e-06
## 14217   Jeff Foust               reliant    11 1573821 6.989359e-06
## 14218   Jeff Foust               removes    11 1573821 6.989359e-06
## 14219   Jeff Foust            renovating    11 1573821 6.989359e-06
## 14220   Jeff Foust            reorganize    11 1573821 6.989359e-06
## 14221   Jeff Foust             reserving    11 1573821 6.989359e-06
## 14222   Jeff Foust                resort    11 1573821 6.989359e-06
## 14223   Jeff Foust           responsibly    11 1573821 6.989359e-06
## 14224   Jeff Foust             restarted    11 1573821 6.989359e-06
## 14225   Jeff Foust          restructured    11 1573821 6.989359e-06
## 14226   Jeff Foust            resumption    11 1573821 6.989359e-06
## 14227   Jeff Foust               rethink    11 1573821 6.989359e-06
## 14228   Jeff Foust             reviewers    11 1573821 6.989359e-06
## 14229   Jeff Foust           rocketplane    11 1573821 6.989359e-06
## 14230   Jeff Foust                rockot    11 1573821 6.989359e-06
## 14231   Jeff Foust                 rolls    11 1573821 6.989359e-06
## 14232   Jeff Foust              salaries    11 1573821 6.989359e-06
## 14233   Jeff Foust          satellogic’s    11 1573821 6.989359e-06
## 14234   Jeff Foust              scheeres    11 1573821 6.989359e-06
## 14235   Jeff Foust            schenewerk    11 1573821 6.989359e-06
## 14236   Jeff Foust               scratch    11 1573821 6.989359e-06
## 14237   Jeff Foust                secret    11 1573821 6.989359e-06
## 14238   Jeff Foust                  seds    11 1573821 6.989359e-06
## 14239   Jeff Foust                  semi    11 1573821 6.989359e-06
## 14240   Jeff Foust              severely    11 1573821 6.989359e-06
## 14241   Jeff Foust               shaking    11 1573821 6.989359e-06
## 14242   Jeff Foust                shapes    11 1573821 6.989359e-06
## 14243   Jeff Foust             shepard’s    11 1573821 6.989359e-06
## 14244   Jeff Foust               shields    11 1573821 6.989359e-06
## 14245   Jeff Foust               shijian    11 1573821 6.989359e-06
## 14246   Jeff Foust              shopping    11 1573821 6.989359e-06
## 14247   Jeff Foust              shoulder    11 1573821 6.989359e-06
## 14248   Jeff Foust              siriusxm    11 1573821 6.989359e-06
## 14249   Jeff Foust             slingshot    11 1573821 6.989359e-06
## 14250   Jeff Foust                   sn4    11 1573821 6.989359e-06
## 14251   Jeff Foust              sourcing    11 1573821 6.989359e-06
## 14252   Jeff Foust             southeast    11 1573821 6.989359e-06
## 14253   Jeff Foust             spaceware    11 1573821 6.989359e-06
## 14254   Jeff Foust                speaks    11 1573821 6.989359e-06
## 14255   Jeff Foust             specifies    11 1573821 6.989359e-06
## 14256   Jeff Foust                   spi    11 1573821 6.989359e-06
## 14257   Jeff Foust               spinoff    11 1573821 6.989359e-06
## 14258   Jeff Foust                 stadd    11 1573821 6.989359e-06
## 14259   Jeff Foust               staffed    11 1573821 6.989359e-06
## 14260   Jeff Foust              staffers    11 1573821 6.989359e-06
## 14261   Jeff Foust              stimulus    11 1573821 6.989359e-06
## 14262   Jeff Foust                stowed    11 1573821 6.989359e-06
## 14263   Jeff Foust             streaming    11 1573821 6.989359e-06
## 14264   Jeff Foust             stressing    11 1573821 6.989359e-06
## 14265   Jeff Foust               strikes    11 1573821 6.989359e-06
## 14266   Jeff Foust           substantive    11 1573821 6.989359e-06
## 14267   Jeff Foust            succession    11 1573821 6.989359e-06
## 14268   Jeff Foust                 sunil    11 1573821 6.989359e-06
## 14269   Jeff Foust              sunshade    11 1573821 6.989359e-06
## 14270   Jeff Foust           sustainably    11 1573821 6.989359e-06
## 14271   Jeff Foust              swearing    11 1573821 6.989359e-06
## 14272   Jeff Foust                 swing    11 1573821 6.989359e-06
## 14273   Jeff Foust                  swri    11 1573821 6.989359e-06
## 14274   Jeff Foust                  sync    11 1573821 6.989359e-06
## 14275   Jeff Foust              syracuse    11 1573821 6.989359e-06
## 14276   Jeff Foust           tanegashima    11 1573821 6.989359e-06
## 14277   Jeff Foust                   tau    11 1573821 6.989359e-06
## 14278   Jeff Foust                tearne    11 1573821 6.989359e-06
## 14279   Jeff Foust                telkom    11 1573821 6.989359e-06
## 14280   Jeff Foust                tenets    11 1573821 6.989359e-06
## 14281   Jeff Foust             threatens    11 1573821 6.989359e-06
## 14282   Jeff Foust               tightly    11 1573821 6.989359e-06
## 14283   Jeff Foust              tikhonov    11 1573821 6.989359e-06
## 14284   Jeff Foust             timescale    11 1573821 6.989359e-06
## 14285   Jeff Foust              trailing    11 1573821 6.989359e-06
## 14286   Jeff Foust              trending    11 1573821 6.989359e-06
## 14287   Jeff Foust               trisept    11 1573821 6.989359e-06
## 14288   Jeff Foust                 tulsa    11 1573821 6.989359e-06
## 14289   Jeff Foust            turbopumps    11 1573821 6.989359e-06
## 14290   Jeff Foust                twenty    11 1573821 6.989359e-06
## 14291   Jeff Foust                 ujiie    11 1573821 6.989359e-06
## 14292   Jeff Foust             uncovered    11 1573821 6.989359e-06
## 14293   Jeff Foust             underwood    11 1573821 6.989359e-06
## 14294   Jeff Foust                 undue    11 1573821 6.989359e-06
## 14295   Jeff Foust            unmodified    11 1573821 6.989359e-06
## 14296   Jeff Foust         unnecessarily    11 1573821 6.989359e-06
## 14297   Jeff Foust        unsuccessfully    11 1573821 6.989359e-06
## 14298   Jeff Foust               upright    11 1573821 6.989359e-06
## 14299   Jeff Foust                 upset    11 1573821 6.989359e-06
## 14300   Jeff Foust             venerable    11 1573821 6.989359e-06
## 14301   Jeff Foust                 venue    11 1573821 6.989359e-06
## 14302   Jeff Foust                  veto    11 1573821 6.989359e-06
## 14303   Jeff Foust                 virus    11 1573821 6.989359e-06
## 14304   Jeff Foust               voltage    11 1573821 6.989359e-06
## 14305   Jeff Foust            wavelength    11 1573821 6.989359e-06
## 14306   Jeff Foust              wfirst’s    11 1573821 6.989359e-06
## 14307   Jeff Foust                winged    11 1573821 6.989359e-06
## 14308   Jeff Foust                  witt    11 1573821 6.989359e-06
## 14309   Jeff Foust             woodlands    11 1573821 6.989359e-06
## 14310   Jeff Foust                xpress    11 1573821 6.989359e-06
## 14311 Sandra Erwin               abandon    11  716353 1.535556e-05
## 14312 Sandra Erwin             abilities    11  716353 1.535556e-05
## 14313 Sandra Erwin           accelerates    11  716353 1.535556e-05
## 14314 Sandra Erwin              accessed    11  716353 1.535556e-05
## 14315 Sandra Erwin            accordance    11  716353 1.535556e-05
## 14316 Sandra Erwin           achievement    11  716353 1.535556e-05
## 14317 Sandra Erwin               adverse    11  716353 1.535556e-05
## 14318 Sandra Erwin              advisors    11  716353 1.535556e-05
## 14319 Sandra Erwin             afternoon    11  716353 1.535556e-05
## 14320 Sandra Erwin                   ais    11  716353 1.535556e-05
## 14321 Sandra Erwin              allocate    11  716353 1.535556e-05
## 14322 Sandra Erwin          anticipating    11  716353 1.535556e-05
## 14323 Sandra Erwin                    ar    11  716353 1.535556e-05
## 14324 Sandra Erwin              aristoff    11  716353 1.535556e-05
## 14325 Sandra Erwin              arkansas    11  716353 1.535556e-05
## 14326 Sandra Erwin            articulate    11  716353 1.535556e-05
## 14327 Sandra Erwin                ashley    11  716353 1.535556e-05
## 14328 Sandra Erwin             audiences    11  716353 1.535556e-05
## 14329 Sandra Erwin               avenues    11  716353 1.535556e-05
## 14330 Sandra Erwin              avoiding    11  716353 1.535556e-05
## 14331 Sandra Erwin              balloons    11  716353 1.535556e-05
## 14332 Sandra Erwin              berenson    11  716353 1.535556e-05
## 14333 Sandra Erwin                billed    11  716353 1.535556e-05
## 14334 Sandra Erwin                blamed    11  716353 1.535556e-05
## 14335 Sandra Erwin                 blend    11  716353 1.535556e-05
## 14336 Sandra Erwin                blocks    11  716353 1.535556e-05
## 14337 Sandra Erwin          broadcasting    11  716353 1.535556e-05
## 14338 Sandra Erwin               broaden    11  716353 1.535556e-05
## 14339 Sandra Erwin              budgeted    11  716353 1.535556e-05
## 14340 Sandra Erwin               burning    11  716353 1.535556e-05
## 14341 Sandra Erwin                 cares    11  716353 1.535556e-05
## 14342 Sandra Erwin              catching    11  716353 1.535556e-05
## 14343 Sandra Erwin                 cbo’s    11  716353 1.535556e-05
## 14344 Sandra Erwin               centcom    11  716353 1.535556e-05
## 14345 Sandra Erwin              chamussy    11  716353 1.535556e-05
## 14346 Sandra Erwin               chapter    11  716353 1.535556e-05
## 14347 Sandra Erwin       characteristics    11  716353 1.535556e-05
## 14348 Sandra Erwin               chasing    11  716353 1.535556e-05
## 14349 Sandra Erwin                 chuck    11  716353 1.535556e-05
## 14350 Sandra Erwin               claimed    11  716353 1.535556e-05
## 14351 Sandra Erwin                closes    11  716353 1.535556e-05
## 14352 Sandra Erwin               comspoc    11  716353 1.535556e-05
## 14353 Sandra Erwin           consecutive    11  716353 1.535556e-05
## 14354 Sandra Erwin               consist    11  716353 1.535556e-05
## 14355 Sandra Erwin           constructed    11  716353 1.535556e-05
## 14356 Sandra Erwin         contemplating    11  716353 1.535556e-05
## 14357 Sandra Erwin           continually    11  716353 1.535556e-05
## 14358 Sandra Erwin               coupled    11  716353 1.535556e-05
## 14359 Sandra Erwin                  cspc    11  716353 1.535556e-05
## 14360 Sandra Erwin             cultivate    11  716353 1.535556e-05
## 14361 Sandra Erwin            cumbersome    11  716353 1.535556e-05
## 14362 Sandra Erwin               deborah    11  716353 1.535556e-05
## 14363 Sandra Erwin               declare    11  716353 1.535556e-05
## 14364 Sandra Erwin                deepen    11  716353 1.535556e-05
## 14365 Sandra Erwin               defines    11  716353 1.535556e-05
## 14366 Sandra Erwin           designation    11  716353 1.535556e-05
## 14367 Sandra Erwin         developmental    11  716353 1.535556e-05
## 14368 Sandra Erwin          disconnected    11  716353 1.535556e-05
## 14369 Sandra Erwin           disseminate    11  716353 1.535556e-05
## 14370 Sandra Erwin              distinct    11  716353 1.535556e-05
## 14371 Sandra Erwin                divide    11  716353 1.535556e-05
## 14372 Sandra Erwin         documentation    11  716353 1.535556e-05
## 14373 Sandra Erwin               drivers    11  716353 1.535556e-05
## 14374 Sandra Erwin               duopoly    11  716353 1.535556e-05
## 14375 Sandra Erwin             eberhardt    11  716353 1.535556e-05
## 14376 Sandra Erwin                echoes    11  716353 1.535556e-05
## 14377 Sandra Erwin             elevating    11  716353 1.535556e-05
## 14378 Sandra Erwin            eliminated    11  716353 1.535556e-05
## 14379 Sandra Erwin               elleman    11  716353 1.535556e-05
## 14380 Sandra Erwin               endorse    11  716353 1.535556e-05
## 14381 Sandra Erwin              enthused    11  716353 1.535556e-05
## 14382 Sandra Erwin          enthusiastic    11  716353 1.535556e-05
## 14383 Sandra Erwin              envision    11  716353 1.535556e-05
## 14384 Sandra Erwin                 ernst    11  716353 1.535556e-05
## 14385 Sandra Erwin                   est    11  716353 1.535556e-05
## 14386 Sandra Erwin              everyday    11  716353 1.535556e-05
## 14387 Sandra Erwin              examined    11  716353 1.535556e-05
## 14388 Sandra Erwin           exoanalytic    11  716353 1.535556e-05
## 14389 Sandra Erwin            exploiting    11  716353 1.535556e-05
## 14390 Sandra Erwin               exposed    11  716353 1.535556e-05
## 14391 Sandra Erwin               fallout    11  716353 1.535556e-05
## 14392 Sandra Erwin                   fee    11  716353 1.535556e-05
## 14393 Sandra Erwin                fights    11  716353 1.535556e-05
## 14394 Sandra Erwin                  file    11  716353 1.535556e-05
## 14395 Sandra Erwin            finalizing    11  716353 1.535556e-05
## 14396 Sandra Erwin              fireside    11  716353 1.535556e-05
## 14397 Sandra Erwin               flowing    11  716353 1.535556e-05
## 14398 Sandra Erwin               formula    11  716353 1.535556e-05
## 14399 Sandra Erwin             furnished    11  716353 1.535556e-05
## 14400 Sandra Erwin                    ga    11  716353 1.535556e-05
## 14401 Sandra Erwin              garrison    11  716353 1.535556e-05
## 14402 Sandra Erwin              gathered    11  716353 1.535556e-05
## 14403 Sandra Erwin                  gmti    11  716353 1.535556e-05
## 14404 Sandra Erwin                 grasp    11  716353 1.535556e-05
## 14405 Sandra Erwin             graveyard    11  716353 1.535556e-05
## 14406 Sandra Erwin              griffith    11  716353 1.535556e-05
## 14407 Sandra Erwin                  gulf    11  716353 1.535556e-05
## 14408 Sandra Erwin              gunsmoke    11  716353 1.535556e-05
## 14409 Sandra Erwin               halifax    11  716353 1.535556e-05
## 14410 Sandra Erwin                hashed    11  716353 1.535556e-05
## 14411 Sandra Erwin                 hauge    11  716353 1.535556e-05
## 14412 Sandra Erwin                hayduk    11  716353 1.535556e-05
## 14413 Sandra Erwin                  helm    11  716353 1.535556e-05
## 14414 Sandra Erwin            hyperspace    11  716353 1.535556e-05
## 14415 Sandra Erwin              hyspeciq    11  716353 1.535556e-05
## 14416 Sandra Erwin               illicit    11  716353 1.535556e-05
## 14417 Sandra Erwin                impose    11  716353 1.535556e-05
## 14418 Sandra Erwin            improperly    11  716353 1.535556e-05
## 14419 Sandra Erwin          incorporated    11  716353 1.535556e-05
## 14420 Sandra Erwin         incrementally    11  716353 1.535556e-05
## 14421 Sandra Erwin              inertial    11  716353 1.535556e-05
## 14422 Sandra Erwin              inflated    11  716353 1.535556e-05
## 14423 Sandra Erwin                influx    11  716353 1.535556e-05
## 14424 Sandra Erwin                insert    11  716353 1.535556e-05
## 14425 Sandra Erwin              involves    11  716353 1.535556e-05
## 14426 Sandra Erwin                  iowa    11  716353 1.535556e-05
## 14427 Sandra Erwin                   jon    11  716353 1.535556e-05
## 14428 Sandra Erwin               jumping    11  716353 1.535556e-05
## 14429 Sandra Erwin               labeled    11  716353 1.535556e-05
## 14430 Sandra Erwin                 lance    11  716353 1.535556e-05
## 14431 Sandra Erwin               letters    11  716353 1.535556e-05
## 14432 Sandra Erwin            lightridge    11  716353 1.535556e-05
## 14433 Sandra Erwin           lightweight    11  716353 1.535556e-05
## 14434 Sandra Erwin               lincoln    11  716353 1.535556e-05
## 14435 Sandra Erwin                linked    11  716353 1.535556e-05
## 14436 Sandra Erwin                linuss    11  716353 1.535556e-05
## 14437 Sandra Erwin                 lived    11  716353 1.535556e-05
## 14438 Sandra Erwin                 looms    11  716353 1.535556e-05
## 14439 Sandra Erwin             lucrative    11  716353 1.535556e-05
## 14440 Sandra Erwin               maguire    11  716353 1.535556e-05
## 14441 Sandra Erwin                maiden    11  716353 1.535556e-05
## 14442 Sandra Erwin                makeup    11  716353 1.535556e-05
## 14443 Sandra Erwin                manned    11  716353 1.535556e-05
## 14444 Sandra Erwin                mantra    11  716353 1.535556e-05
## 14445 Sandra Erwin               matured    11  716353 1.535556e-05
## 14446 Sandra Erwin              mcknight    11  716353 1.535556e-05
## 14447 Sandra Erwin            membership    11  716353 1.535556e-05
## 14448 Sandra Erwin               metrics    11  716353 1.535556e-05
## 14449 Sandra Erwin        microsatellite    11  716353 1.535556e-05
## 14450 Sandra Erwin           militarized    11  716353 1.535556e-05
## 14451 Sandra Erwin              missouri    11  716353 1.535556e-05
## 14452 Sandra Erwin                modest    11  716353 1.535556e-05
## 14453 Sandra Erwin                mojave    11  716353 1.535556e-05
## 14454 Sandra Erwin                 moran    11  716353 1.535556e-05
## 14455 Sandra Erwin                mounce    11  716353 1.535556e-05
## 14456 Sandra Erwin              mutually    11  716353 1.535556e-05
## 14457 Sandra Erwin             necessity    11  716353 1.535556e-05
## 14458 Sandra Erwin              negative    11  716353 1.535556e-05
## 14459 Sandra Erwin               netflix    11  716353 1.535556e-05
## 14460 Sandra Erwin             newcomers    11  716353 1.535556e-05
## 14461 Sandra Erwin             nicknamed    11  716353 1.535556e-05
## 14462 Sandra Erwin             optically    11  716353 1.535556e-05
## 14463 Sandra Erwin             optimized    11  716353 1.535556e-05
## 14464 Sandra Erwin                oracle    11  716353 1.535556e-05
## 14465 Sandra Erwin             outsource    11  716353 1.535556e-05
## 14466 Sandra Erwin                packed    11  716353 1.535556e-05
## 14467 Sandra Erwin                  paso    11  716353 1.535556e-05
## 14468 Sandra Erwin               passive    11  716353 1.535556e-05
## 14469 Sandra Erwin                 pause    11  716353 1.535556e-05
## 14470 Sandra Erwin                 peace    11  716353 1.535556e-05
## 14471 Sandra Erwin                perdue    11  716353 1.535556e-05
## 14472 Sandra Erwin            performers    11  716353 1.535556e-05
## 14473 Sandra Erwin           persistence    11  716353 1.535556e-05
## 14474 Sandra Erwin                photon    11  716353 1.535556e-05
## 14475 Sandra Erwin                 picks    11  716353 1.535556e-05
## 14476 Sandra Erwin                  pipe    11  716353 1.535556e-05
## 14477 Sandra Erwin              pitching    11  716353 1.535556e-05
## 14478 Sandra Erwin             planetary    11  716353 1.535556e-05
## 14479 Sandra Erwin                plasma    11  716353 1.535556e-05
## 14480 Sandra Erwin                pompeo    11  716353 1.535556e-05
## 14481 Sandra Erwin            portfolios    11  716353 1.535556e-05
## 14482 Sandra Erwin        predictability    11  716353 1.535556e-05
## 14483 Sandra Erwin            predicting    11  716353 1.535556e-05
## 14484 Sandra Erwin              profound    11  716353 1.535556e-05
## 14485 Sandra Erwin             protocols    11  716353 1.535556e-05
## 14486 Sandra Erwin                pushes    11  716353 1.535556e-05
## 14487 Sandra Erwin           questioning    11  716353 1.535556e-05
## 14488 Sandra Erwin                refers    11  716353 1.535556e-05
## 14489 Sandra Erwin              refueled    11  716353 1.535556e-05
## 14490 Sandra Erwin              regulate    11  716353 1.535556e-05
## 14491 Sandra Erwin             replenish    11  716353 1.535556e-05
## 14492 Sandra Erwin            resourcing    11  716353 1.535556e-05
## 14493 Sandra Erwin        responsiveness    11  716353 1.535556e-05
## 14494 Sandra Erwin            rethinking    11  716353 1.535556e-05
## 14495 Sandra Erwin             revisions    11  716353 1.535556e-05
## 14496 Sandra Erwin                  rfps    11  716353 1.535556e-05
## 14497 Sandra Erwin               roaming    11  716353 1.535556e-05
## 14498 Sandra Erwin                 robot    11  716353 1.535556e-05
## 14499 Sandra Erwin                robots    11  716353 1.535556e-05
## 14500 Sandra Erwin                safran    11  716353 1.535556e-05
## 14501 Sandra Erwin                sample    11  716353 1.535556e-05
## 14502 Sandra Erwin                  scar    11  716353 1.535556e-05
## 14503 Sandra Erwin                 score    11  716353 1.535556e-05
## 14504 Sandra Erwin               scoring    11  716353 1.535556e-05
## 14505 Sandra Erwin               scout’s    11  716353 1.535556e-05
## 14506 Sandra Erwin                 seize    11  716353 1.535556e-05
## 14507 Sandra Erwin            selections    11  716353 1.535556e-05
## 14508 Sandra Erwin                 sells    11  716353 1.535556e-05
## 14509 Sandra Erwin               senator    11  716353 1.535556e-05
## 14510 Sandra Erwin          shareholders    11  716353 1.535556e-05
## 14511 Sandra Erwin                shares    11  716353 1.535556e-05
## 14512 Sandra Erwin                 shock    11  716353 1.535556e-05
## 14513 Sandra Erwin              showcase    11  716353 1.535556e-05
## 14514 Sandra Erwin          silentbarker    11  716353 1.535556e-05
## 14515 Sandra Erwin              singular    11  716353 1.535556e-05
## 14516 Sandra Erwin               skyloom    11  716353 1.535556e-05
## 14517 Sandra Erwin           slingshot’s    11  716353 1.535556e-05
## 14518 Sandra Erwin                slower    11  716353 1.535556e-05
## 14519 Sandra Erwin                   sls    11  716353 1.535556e-05
## 14520 Sandra Erwin               smarter    11  716353 1.535556e-05
## 14521 Sandra Erwin               sourced    11  716353 1.535556e-05
## 14522 Sandra Erwin             sovereign    11  716353 1.535556e-05
## 14523 Sandra Erwin           spacefaring    11  716353 1.535556e-05
## 14524 Sandra Erwin                 spare    11  716353 1.535556e-05
## 14525 Sandra Erwin                speaks    11  716353 1.535556e-05
## 14526 Sandra Erwin              speeding    11  716353 1.535556e-05
## 14527 Sandra Erwin               spinoff    11  716353 1.535556e-05
## 14528 Sandra Erwin                spiral    11  716353 1.535556e-05
## 14529 Sandra Erwin                 stars    11  716353 1.535556e-05
## 14530 Sandra Erwin                steady    11  716353 1.535556e-05
## 14531 Sandra Erwin             streaming    11  716353 1.535556e-05
## 14532 Sandra Erwin              strictly    11  716353 1.535556e-05
## 14533 Sandra Erwin                 style    11  716353 1.535556e-05
## 14534 Sandra Erwin             substance    11  716353 1.535556e-05
## 14535 Sandra Erwin                  sued    11  716353 1.535556e-05
## 14536 Sandra Erwin           suggestions    11  716353 1.535556e-05
## 14537 Sandra Erwin              sunlight    11  716353 1.535556e-05
## 14538 Sandra Erwin              superior    11  716353 1.535556e-05
## 14539 Sandra Erwin              surfaced    11  716353 1.535556e-05
## 14540 Sandra Erwin               surpass    11  716353 1.535556e-05
## 14541 Sandra Erwin             switching    11  716353 1.535556e-05
## 14542 Sandra Erwin                 tampa    11  716353 1.535556e-05
## 14543 Sandra Erwin                 taste    11  716353 1.535556e-05
## 14544 Sandra Erwin                 terry    11  716353 1.535556e-05
## 14545 Sandra Erwin                 tesla    11  716353 1.535556e-05
## 14546 Sandra Erwin               tightly    11  716353 1.535556e-05
## 14547 Sandra Erwin               timothy    11  716353 1.535556e-05
## 14548 Sandra Erwin               tougher    11  716353 1.535556e-05
## 14549 Sandra Erwin              transcom    11  716353 1.535556e-05
## 14550 Sandra Erwin                  turf    11  716353 1.535556e-05
## 14551 Sandra Erwin        unconventional    11  716353 1.535556e-05
## 14552 Sandra Erwin            unfamiliar    11  716353 1.535556e-05
## 14553 Sandra Erwin                  usov    11  716353 1.535556e-05
## 14554 Sandra Erwin             utilizing    11  716353 1.535556e-05
## 14555 Sandra Erwin                  vein    11  716353 1.535556e-05
## 14556 Sandra Erwin              victoria    11  716353 1.535556e-05
## 14557 Sandra Erwin                 vocal    11  716353 1.535556e-05
## 14558 Sandra Erwin                  walk    11  716353 1.535556e-05
## 14559 Sandra Erwin                  warp    11  716353 1.535556e-05
## 14560 Sandra Erwin                 waves    11  716353 1.535556e-05
## 14561 Sandra Erwin                weighs    11  716353 1.535556e-05
## 14562 Sandra Erwin            withdrawal    11  716353 1.535556e-05
## 14563   Jeff Foust                  10th    10 1573821 6.353963e-06
## 14564   Jeff Foust                    2c    10 1573821 6.353963e-06
## 14565   Jeff Foust         accommodation    10 1573821 6.353963e-06
## 14566   Jeff Foust            actionable    10 1573821 6.353963e-06
## 14567   Jeff Foust              adapting    10 1573821 6.353963e-06
## 14568   Jeff Foust          additionally    10 1573821 6.353963e-06
## 14569   Jeff Foust                   adm    10 1573821 6.353963e-06
## 14570   Jeff Foust               advises    10 1573821 6.353963e-06
## 14571   Jeff Foust                    ai    10 1573821 6.353963e-06
## 14572   Jeff Foust              albrecht    10 1573821 6.353963e-06
## 14573   Jeff Foust            almansoori    10 1573821 6.353963e-06
## 14574   Jeff Foust                andrei    10 1573821 6.353963e-06
## 14575   Jeff Foust            apolitical    10 1573821 6.353963e-06
## 14576   Jeff Foust                   app    10 1573821 6.353963e-06
## 14577   Jeff Foust          appreciation    10 1573821 6.353963e-06
## 14578   Jeff Foust           approximate    10 1573821 6.353963e-06
## 14579   Jeff Foust            archimedes    10 1573821 6.353963e-06
## 14580   Jeff Foust              artifact    10 1573821 6.353963e-06
## 14581   Jeff Foust              assisted    10 1573821 6.353963e-06
## 14582   Jeff Foust               assists    10 1573821 6.353963e-06
## 14583   Jeff Foust         astrophysical    10 1573821 6.353963e-06
## 14584   Jeff Foust           atmospheres    10 1573821 6.353963e-06
## 14585   Jeff Foust             audacious    10 1573821 6.353963e-06
## 14586   Jeff Foust                  auto    10 1573821 6.353963e-06
## 14587   Jeff Foust            automotive    10 1573821 6.353963e-06
## 14588   Jeff Foust            azerbaijan    10 1573821 6.353963e-06
## 14589   Jeff Foust              backhaul    10 1573821 6.353963e-06
## 14590   Jeff Foust                   bae    10 1573821 6.353963e-06
## 14591   Jeff Foust             banazadeh    10 1573821 6.353963e-06
## 14592   Jeff Foust                bandla    10 1573821 6.353963e-06
## 14593   Jeff Foust                  bang    10 1573821 6.353963e-06
## 14594   Jeff Foust                barely    10 1573821 6.353963e-06
## 14595   Jeff Foust               barrett    10 1573821 6.353963e-06
## 14596   Jeff Foust                beacon    10 1573821 6.353963e-06
## 14597   Jeff Foust                 beams    10 1573821 6.353963e-06
## 14598   Jeff Foust               bearing    10 1573821 6.353963e-06
## 14599   Jeff Foust                  beau    10 1573821 6.353963e-06
## 14600   Jeff Foust                   bed    10 1573821 6.353963e-06
## 14601   Jeff Foust                 bench    10 1573821 6.353963e-06
## 14602   Jeff Foust                berger    10 1573821 6.353963e-06
## 14603   Jeff Foust             bigelow’s    10 1573821 6.353963e-06
## 14604   Jeff Foust               blanket    10 1573821 6.353963e-06
## 14605   Jeff Foust                boards    10 1573821 6.353963e-06
## 14606   Jeff Foust                 bobby    10 1573821 6.353963e-06
## 14607   Jeff Foust                 bonin    10 1573821 6.353963e-06
## 14608   Jeff Foust              boosting    10 1573821 6.353963e-06
## 14609   Jeff Foust              bradford    10 1573821 6.353963e-06
## 14610   Jeff Foust                 brake    10 1573821 6.353963e-06
## 14611   Jeff Foust               braking    10 1573821 6.353963e-06
## 14612   Jeff Foust              brazil’s    10 1573821 6.353963e-06
## 14613   Jeff Foust                  brig    10 1573821 6.353963e-06
## 14614   Jeff Foust             brilliant    10 1573821 6.353963e-06
## 14615   Jeff Foust             britain’s    10 1573821 6.353963e-06
## 14616   Jeff Foust                  buck    10 1573821 6.353963e-06
## 14617   Jeff Foust                  bull    10 1573821 6.353963e-06
## 14618   Jeff Foust                bunger    10 1573821 6.353963e-06
## 14619   Jeff Foust            burdensome    10 1573821 6.353963e-06
## 14620   Jeff Foust               burning    10 1573821 6.353963e-06
## 14621   Jeff Foust                buyers    10 1573821 6.353963e-06
## 14622   Jeff Foust             calibrate    10 1573821 6.353963e-06
## 14623   Jeff Foust                 canup    10 1573821 6.353963e-06
## 14624   Jeff Foust           capitalists    10 1573821 6.353963e-06
## 14625   Jeff Foust             carbonite    10 1573821 6.353963e-06
## 14626   Jeff Foust             caribbean    10 1573821 6.353963e-06
## 14627   Jeff Foust                 carol    10 1573821 6.353963e-06
## 14628   Jeff Foust            cartwright    10 1573821 6.353963e-06
## 14629   Jeff Foust            casualties    10 1573821 6.353963e-06
## 14630   Jeff Foust                 cease    10 1573821 6.353963e-06
## 14631   Jeff Foust            ceremonies    10 1573821 6.353963e-06
## 14632   Jeff Foust                  chad    10 1573821 6.353963e-06
## 14633   Jeff Foust              chairing    10 1573821 6.353963e-06
## 14634   Jeff Foust               chamath    10 1573821 6.353963e-06
## 14635   Jeff Foust                charon    10 1573821 6.353963e-06
## 14636   Jeff Foust                  chat    10 1573821 6.353963e-06
## 14637   Jeff Foust                 child    10 1573821 6.353963e-06
## 14638   Jeff Foust                chodas    10 1573821 6.353963e-06
## 14639   Jeff Foust           circularize    10 1573821 6.353963e-06
## 14640   Jeff Foust                 cites    10 1573821 6.353963e-06
## 14641   Jeff Foust                  clay    10 1573821 6.353963e-06
## 14642   Jeff Foust                  cnsa    10 1573821 6.353963e-06
## 14643   Jeff Foust               cockpit    10 1573821 6.353963e-06
## 14644   Jeff Foust               comfort    10 1573821 6.353963e-06
## 14645   Jeff Foust               commend    10 1573821 6.353963e-06
## 14646   Jeff Foust           community’s    10 1573821 6.353963e-06
## 14647   Jeff Foust              complain    10 1573821 6.353963e-06
## 14648   Jeff Foust            compounded    10 1573821 6.353963e-06
## 14649   Jeff Foust              compress    10 1573821 6.353963e-06
## 14650   Jeff Foust             conceived    10 1573821 6.353963e-06
## 14651   Jeff Foust           concurrence    10 1573821 6.353963e-06
## 14652   Jeff Foust               conical    10 1573821 6.353963e-06
## 14653   Jeff Foust                  conn    10 1573821 6.353963e-06
## 14654   Jeff Foust          constructive    10 1573821 6.353963e-06
## 14655   Jeff Foust         consultations    10 1573821 6.353963e-06
## 14656   Jeff Foust             contender    10 1573821 6.353963e-06
## 14657   Jeff Foust             continent    10 1573821 6.353963e-06
## 14658   Jeff Foust           continental    10 1573821 6.353963e-06
## 14659   Jeff Foust           continually    10 1573821 6.353963e-06
## 14660   Jeff Foust              convenes    10 1573821 6.353963e-06
## 14661   Jeff Foust                cornyn    10 1573821 6.353963e-06
## 14662   Jeff Foust                  cosi    10 1573821 6.353963e-06
## 14663   Jeff Foust             cosmology    10 1573821 6.353963e-06
## 14664   Jeff Foust          counterspace    10 1573821 6.353963e-06
## 14665   Jeff Foust               court’s    10 1573821 6.353963e-06
## 14666   Jeff Foust                 cream    10 1573821 6.353963e-06
## 14667   Jeff Foust               credits    10 1573821 6.353963e-06
## 14668   Jeff Foust                   cso    10 1573821 6.353963e-06
## 14669   Jeff Foust           culberson’s    10 1573821 6.353963e-06
## 14670   Jeff Foust              currents    10 1573821 6.353963e-06
## 14671   Jeff Foust              dedicate    10 1573821 6.353963e-06
## 14672   Jeff Foust               degrade    10 1573821 6.353963e-06
## 14673   Jeff Foust               denying    10 1573821 6.353963e-06
## 14674   Jeff Foust             deposited    10 1573821 6.353963e-06
## 14675   Jeff Foust               desires    10 1573821 6.353963e-06
## 14676   Jeff Foust              destined    10 1573821 6.353963e-06
## 14677   Jeff Foust           detrimental    10 1573821 6.353963e-06
## 14678   Jeff Foust              deutsche    10 1573821 6.353963e-06
## 14679   Jeff Foust                  dirt    10 1573821 6.353963e-06
## 14680   Jeff Foust             discounts    10 1573821 6.353963e-06
## 14681   Jeff Foust               dismiss    10 1573821 6.353963e-06
## 14682   Jeff Foust                disney    10 1573821 6.353963e-06
## 14683   Jeff Foust              disposed    10 1573821 6.353963e-06
## 14684   Jeff Foust                  dive    10 1573821 6.353963e-06
## 14685   Jeff Foust                 docks    10 1573821 6.353963e-06
## 14686   Jeff Foust             doctorate    10 1573821 6.353963e-06
## 14687   Jeff Foust               dormant    10 1573821 6.353963e-06
## 14688   Jeff Foust              doubtful    10 1573821 6.353963e-06
## 14689   Jeff Foust                  drug    10 1573821 6.353963e-06
## 14690   Jeff Foust                 dummy    10 1573821 6.353963e-06
## 14691   Jeff Foust                  ears    10 1573821 6.353963e-06
## 14692   Jeff Foust                 eased    10 1573821 6.353963e-06
## 14693   Jeff Foust               ehlmann    10 1573821 6.353963e-06
## 14694   Jeff Foust            einstein’s    10 1573821 6.353963e-06
## 14695   Jeff Foust                   el3    10 1573821 6.353963e-06
## 14696   Jeff Foust              electing    10 1573821 6.353963e-06
## 14697   Jeff Foust            electronic    10 1573821 6.353963e-06
## 14698   Jeff Foust             elevation    10 1573821 6.353963e-06
## 14699   Jeff Foust           elimination    10 1573821 6.353963e-06
## 14700   Jeff Foust                 elroi    10 1573821 6.353963e-06
## 14701   Jeff Foust                   emi    10 1573821 6.353963e-06
## 14702   Jeff Foust            endangered    10 1573821 6.353963e-06
## 14703   Jeff Foust               endless    10 1573821 6.353963e-06
## 14704   Jeff Foust             enpulsion    10 1573821 6.353963e-06
## 14705   Jeff Foust                 erika    10 1573821 6.353963e-06
## 14706   Jeff Foust               esrange    10 1573821 6.353963e-06
## 14707   Jeff Foust                ethics    10 1573821 6.353963e-06
## 14708   Jeff Foust                eugene    10 1573821 6.353963e-06
## 14709   Jeff Foust                  euro    10 1573821 6.353963e-06
## 14710   Jeff Foust                 eusst    10 1573821 6.353963e-06
## 14711   Jeff Foust          everything’s    10 1573821 6.353963e-06
## 14712   Jeff Foust              excepted    10 1573821 6.353963e-06
## 14713   Jeff Foust         exceptionally    10 1573821 6.353963e-06
## 14714   Jeff Foust            excursions    10 1573821 6.353963e-06
## 14715   Jeff Foust              explains    10 1573821 6.353963e-06
## 14716   Jeff Foust                 facto    10 1573821 6.353963e-06
## 14717   Jeff Foust               fanning    10 1573821 6.353963e-06
## 14718   Jeff Foust                  feat    10 1573821 6.353963e-06
## 14719   Jeff Foust               ferried    10 1573821 6.353963e-06
## 14720   Jeff Foust              fielding    10 1573821 6.353963e-06
## 14721   Jeff Foust               filters    10 1573821 6.353963e-06
## 14722   Jeff Foust              fireball    10 1573821 6.353963e-06
## 14723   Jeff Foust                 flags    10 1573821 6.353963e-06
## 14724   Jeff Foust                  flip    10 1573821 6.353963e-06
## 14725   Jeff Foust            footprints    10 1573821 6.353963e-06
## 14726   Jeff Foust                 forge    10 1573821 6.353963e-06
## 14727   Jeff Foust             fostering    10 1573821 6.353963e-06
## 14728   Jeff Foust             fragments    10 1573821 6.353963e-06
## 14729   Jeff Foust           frontrunner    10 1573821 6.353963e-06
## 14730   Jeff Foust         functionality    10 1573821 6.353963e-06
## 14731   Jeff Foust                  gale    10 1573821 6.353963e-06
## 14732   Jeff Foust                garcia    10 1573821 6.353963e-06
## 14733   Jeff Foust               glasgow    10 1573821 6.353963e-06
## 14734   Jeff Foust                glides    10 1573821 6.353963e-06
## 14735   Jeff Foust              glitches    10 1573821 6.353963e-06
## 14736   Jeff Foust                 glory    10 1573821 6.353963e-06
## 14737   Jeff Foust                  glxp    10 1573821 6.353963e-06
## 14738   Jeff Foust                  gmbh    10 1573821 6.353963e-06
## 14739   Jeff Foust                  gore    10 1573821 6.353963e-06
## 14740   Jeff Foust                graham    10 1573821 6.353963e-06
## 14741   Jeff Foust           grasshopper    10 1573821 6.353963e-06
## 14742   Jeff Foust                graves    10 1573821 6.353963e-06
## 14743   Jeff Foust                  grip    10 1573821 6.353963e-06
## 14744   Jeff Foust                   gsa    10 1573821 6.353963e-06
## 14745   Jeff Foust               guiding    10 1573821 6.353963e-06
## 14746   Jeff Foust                hainan    10 1573821 6.353963e-06
## 14747   Jeff Foust                halves    10 1573821 6.353963e-06
## 14748   Jeff Foust                 harms    10 1573821 6.353963e-06
## 14749   Jeff Foust                 harry    10 1573821 6.353963e-06
## 14750   Jeff Foust               heavens    10 1573821 6.353963e-06
## 14751   Jeff Foust               heavy’s    10 1573821 6.353963e-06
## 14752   Jeff Foust                 heels    10 1573821 6.353963e-06
## 14753   Jeff Foust              heinlein    10 1573821 6.353963e-06
## 14754   Jeff Foust             historian    10 1573821 6.353963e-06
## 14755   Jeff Foust                   hoc    10 1573821 6.353963e-06
## 14756   Jeff Foust              horizonx    10 1573821 6.353963e-06
## 14757   Jeff Foust             hospitals    10 1573821 6.353963e-06
## 14758   Jeff Foust                hourly    10 1573821 6.353963e-06
## 14759   Jeff Foust             hungarian    10 1573821 6.353963e-06
## 14760   Jeff Foust               hungary    10 1573821 6.353963e-06
## 14761   Jeff Foust                hungry    10 1573821 6.353963e-06
## 14762   Jeff Foust                  icao    10 1573821 6.353963e-06
## 14763   Jeff Foust                 icbms    10 1573821 6.353963e-06
## 14764   Jeff Foust                icesat    10 1573821 6.353963e-06
## 14765   Jeff Foust            illustrate    10 1573821 6.353963e-06
## 14766   Jeff Foust            implicated    10 1573821 6.353963e-06
## 14767   Jeff Foust              imposing    10 1573821 6.353963e-06
## 14768   Jeff Foust                 incur    10 1573821 6.353963e-06
## 14769   Jeff Foust            indicative    10 1573821 6.353963e-06
## 14770   Jeff Foust             indicator    10 1573821 6.353963e-06
## 14771   Jeff Foust               inflate    10 1573821 6.353963e-06
## 14772   Jeff Foust              inflated    10 1573821 6.353963e-06
## 14773   Jeff Foust            influenced    10 1573821 6.353963e-06
## 14774   Jeff Foust             informing    10 1573821 6.353963e-06
## 14775   Jeff Foust            innovators    10 1573821 6.353963e-06
## 14776   Jeff Foust            instituted    10 1573821 6.353963e-06
## 14777   Jeff Foust           instituting    10 1573821 6.353963e-06
## 14778   Jeff Foust          instrumented    10 1573821 6.353963e-06
## 14779   Jeff Foust              insulate    10 1573821 6.353963e-06
## 14780   Jeff Foust            interacted    10 1573821 6.353963e-06
## 14781   Jeff Foust          interorbital    10 1573821 6.353963e-06
## 14782   Jeff Foust          interruption    10 1573821 6.353963e-06
## 14783   Jeff Foust             intervals    10 1573821 6.353963e-06
## 14784   Jeff Foust            introduces    10 1573821 6.353963e-06
## 14785   Jeff Foust             iridium’s    10 1573821 6.353963e-06
## 14786   Jeff Foust            ironically    10 1573821 6.353963e-06
## 14787   Jeff Foust             isakowitz    10 1573821 6.353963e-06
## 14788   Jeff Foust             isotropic    10 1573821 6.353963e-06
## 14789   Jeff Foust                jackim    10 1573821 6.353963e-06
## 14790   Jeff Foust               jarrett    10 1573821 6.353963e-06
## 14791   Jeff Foust                   jcl    10 1573821 6.353963e-06
## 14792   Jeff Foust           jeopardized    10 1573821 6.353963e-06
## 14793   Jeff Foust                   joy    10 1573821 6.353963e-06
## 14794   Jeff Foust                  jury    10 1573821 6.353963e-06
## 14795   Jeff Foust               kacific    10 1573821 6.353963e-06
## 14796   Jeff Foust                 karin    10 1573821 6.353963e-06
## 14797   Jeff Foust                 katie    10 1573821 6.353963e-06
## 14798   Jeff Foust                kayhan    10 1573821 6.353963e-06
## 14799   Jeff Foust                keller    10 1573821 6.353963e-06
## 14800   Jeff Foust                 klesh    10 1573821 6.353963e-06
## 14801   Jeff Foust             kornienko    10 1573821 6.353963e-06
## 14802   Jeff Foust                   kud    10 1573821 6.353963e-06
## 14803   Jeff Foust                kármán    10 1573821 6.353963e-06
## 14804   Jeff Foust                   lag    10 1573821 6.353963e-06
## 14805   Jeff Foust        lampoldshausen    10 1573821 6.353963e-06
## 14806   Jeff Foust                league    10 1573821 6.353963e-06
## 14807   Jeff Foust                levied    10 1573821 6.353963e-06
## 14808   Jeff Foust                lights    10 1573821 6.353963e-06
## 14809   Jeff Foust            limitation    10 1573821 6.353963e-06
## 14810   Jeff Foust             liquefied    10 1573821 6.353963e-06
## 14811   Jeff Foust            liquidated    10 1573821 6.353963e-06
## 14812   Jeff Foust                  lsst    10 1573821 6.353963e-06
## 14813   Jeff Foust                   ltc    10 1573821 6.353963e-06
## 14814   Jeff Foust                luxury    10 1573821 6.353963e-06
## 14815   Jeff Foust                 lyons    10 1573821 6.353963e-06
## 14816   Jeff Foust             machining    10 1573821 6.353963e-06
## 14817   Jeff Foust               madison    10 1573821 6.353963e-06
## 14818   Jeff Foust          manufactures    10 1573821 6.353963e-06
## 14819   Jeff Foust              marketed    10 1573821 6.353963e-06
## 14820   Jeff Foust               marotta    10 1573821 6.353963e-06
## 14821   Jeff Foust            materially    10 1573821 6.353963e-06
## 14822   Jeff Foust                medina    10 1573821 6.353963e-06
## 14823   Jeff Foust              membrane    10 1573821 6.353963e-06
## 14824   Jeff Foust                  mess    10 1573821 6.353963e-06
## 14825   Jeff Foust                 metop    10 1573821 6.353963e-06
## 14826   Jeff Foust              microtec    10 1573821 6.353963e-06
## 14827   Jeff Foust                midday    10 1573821 6.353963e-06
## 14828   Jeff Foust           millimeters    10 1573821 6.353963e-06
## 14829   Jeff Foust                  mimi    10 1573821 6.353963e-06
## 14830   Jeff Foust                mittal    10 1573821 6.353963e-06
## 14831   Jeff Foust                  moog    10 1573821 6.353963e-06
## 14832   Jeff Foust           motherships    10 1573821 6.353963e-06
## 14833   Jeff Foust                movers    10 1573821 6.353963e-06
## 14834   Jeff Foust                mpower    10 1573821 6.353963e-06
## 14835   Jeff Foust               mueller    10 1573821 6.353963e-06
## 14836   Jeff Foust              mutually    10 1573821 6.353963e-06
## 14837   Jeff Foust             narrative    10 1573821 6.353963e-06
## 14838   Jeff Foust                  ndaa    10 1573821 6.353963e-06
## 14839   Jeff Foust                   nea    10 1573821 6.353963e-06
## 14840   Jeff Foust                  neal    10 1573821 6.353963e-06
## 14841   Jeff Foust                needle    10 1573821 6.353963e-06
## 14842   Jeff Foust                 neosm    10 1573821 6.353963e-06
## 14843   Jeff Foust                 nixon    10 1573821 6.353963e-06
## 14844   Jeff Foust                 nobel    10 1573821 6.353963e-06
## 14845   Jeff Foust                 nylon    10 1573821 6.353963e-06
## 14846   Jeff Foust             october’s    10 1573821 6.353963e-06
## 14847   Jeff Foust         opportunistic    10 1573821 6.353963e-06
## 14848   Jeff Foust          optimization    10 1573821 6.353963e-06
## 14849   Jeff Foust            optimizing    10 1573821 6.353963e-06
## 14850   Jeff Foust                orange    10 1573821 6.353963e-06
## 14851   Jeff Foust            ordinarily    10 1573821 6.353963e-06
## 14852   Jeff Foust                orient    10 1573821 6.353963e-06
## 14853   Jeff Foust               outages    10 1573821 6.353963e-06
## 14854   Jeff Foust            outfitters    10 1573821 6.353963e-06
## 14855   Jeff Foust              outposts    10 1573821 6.353963e-06
## 14856   Jeff Foust              overwrap    10 1573821 6.353963e-06
## 14857   Jeff Foust                   pan    10 1573821 6.353963e-06
## 14858   Jeff Foust                payoff    10 1573821 6.353963e-06
## 14859   Jeff Foust               penalty    10 1573821 6.353963e-06
## 14860   Jeff Foust               persons    10 1573821 6.353963e-06
## 14861   Jeff Foust                   pif    10 1573821 6.353963e-06
## 14862   Jeff Foust                pillar    10 1573821 6.353963e-06
## 14863   Jeff Foust               plastic    10 1573821 6.353963e-06
## 14864   Jeff Foust                    pm    10 1573821 6.353963e-06
## 14865   Jeff Foust               polidan    10 1573821 6.353963e-06
## 14866   Jeff Foust             pomerantz    10 1573821 6.353963e-06
## 14867   Jeff Foust              porteous    10 1573821 6.353963e-06
## 14868   Jeff Foust                powner    10 1573821 6.353963e-06
## 14869   Jeff Foust                  ppwt    10 1573821 6.353963e-06
## 14870   Jeff Foust            practicing    10 1573821 6.353963e-06
## 14871   Jeff Foust              precourt    10 1573821 6.353963e-06
## 14872   Jeff Foust        predictability    10 1573821 6.353963e-06
## 14873   Jeff Foust           preparatory    10 1573821 6.353963e-06
## 14874   Jeff Foust             preserved    10 1573821 6.353963e-06
## 14875   Jeff Foust           prioritizes    10 1573821 6.353963e-06
## 14876   Jeff Foust               proctor    10 1573821 6.353963e-06
## 14877   Jeff Foust          procurements    10 1573821 6.353963e-06
## 14878   Jeff Foust            profession    10 1573821 6.353963e-06
## 14879   Jeff Foust           promotional    10 1573821 6.353963e-06
## 14880   Jeff Foust                prompt    10 1573821 6.353963e-06
## 14881   Jeff Foust             proponent    10 1573821 6.353963e-06
## 14882   Jeff Foust               proxima    10 1573821 6.353963e-06
## 14883   Jeff Foust                    pu    10 1573821 6.353963e-06
## 14884   Jeff Foust               pulsars    10 1573821 6.353963e-06
## 14885   Jeff Foust                pushes    10 1573821 6.353963e-06
## 14886   Jeff Foust                pysher    10 1573821 6.353963e-06
## 14887   Jeff Foust                   quo    10 1573821 6.353963e-06
## 14888   Jeff Foust               radical    10 1573821 6.353963e-06
## 14889   Jeff Foust              raimondo    10 1573821 6.353963e-06
## 14890   Jeff Foust                 ramon    10 1573821 6.353963e-06
## 14891   Jeff Foust               readied    10 1573821 6.353963e-06
## 14892   Jeff Foust               readout    10 1573821 6.353963e-06
## 14893   Jeff Foust          reconfigured    10 1573821 6.353963e-06
## 14894   Jeff Foust               recycle    10 1573821 6.353963e-06
## 14895   Jeff Foust          reflectivity    10 1573821 6.353963e-06
## 14896   Jeff Foust              reflying    10 1573821 6.353963e-06
## 14897   Jeff Foust               refocus    10 1573821 6.353963e-06
## 14898   Jeff Foust               refused    10 1573821 6.353963e-06
## 14899   Jeff Foust            registered    10 1573821 6.353963e-06
## 14900   Jeff Foust             rejection    10 1573821 6.353963e-06
## 14901   Jeff Foust                 relax    10 1573821 6.353963e-06
## 14902   Jeff Foust               relieve    10 1573821 6.353963e-06
## 14903   Jeff Foust             remapping    10 1573821 6.353963e-06
## 14904   Jeff Foust              remnants    10 1573821 6.353963e-06
## 14905   Jeff Foust             repeating    10 1573821 6.353963e-06
## 14906   Jeff Foust               reshape    10 1573821 6.353963e-06
## 14907   Jeff Foust            resistance    10 1573821 6.353963e-06
## 14908   Jeff Foust             respected    10 1573821 6.353963e-06
## 14909   Jeff Foust               reveals    10 1573821 6.353963e-06
## 14910   Jeff Foust               revoked    10 1573821 6.353963e-06
## 14911   Jeff Foust                reward    10 1573821 6.353963e-06
## 14912   Jeff Foust                  rime    10 1573821 6.353963e-06
## 14913   Jeff Foust                 rl10c    10 1573821 6.353963e-06
## 14914   Jeff Foust                   rlv    10 1573821 6.353963e-06
## 14915   Jeff Foust                rupert    10 1573821 6.353963e-06
## 14916   Jeff Foust                 saves    10 1573821 6.353963e-06
## 14917   Jeff Foust                scarce    10 1573821 6.353963e-06
## 14918   Jeff Foust          schiaparelli    10 1573821 6.353963e-06
## 14919   Jeff Foust               schools    10 1573821 6.353963e-06
## 14920   Jeff Foust              schuster    10 1573821 6.353963e-06
## 14921   Jeff Foust             screening    10 1573821 6.353963e-06
## 14922   Jeff Foust                scrubs    10 1573821 6.353963e-06
## 14923   Jeff Foust                    se    10 1573821 6.353963e-06
## 14924   Jeff Foust               secures    10 1573821 6.353963e-06
## 14925   Jeff Foust             segmented    10 1573821 6.353963e-06
## 14926   Jeff Foust                serena    10 1573821 6.353963e-06
## 14927   Jeff Foust              sergeant    10 1573821 6.353963e-06
## 14928   Jeff Foust                 setup    10 1573821 6.353963e-06
## 14929   Jeff Foust             shoemaker    10 1573821 6.353963e-06
## 14930   Jeff Foust              showcase    10 1573821 6.353963e-06
## 14931   Jeff Foust            simplicity    10 1573821 6.353963e-06
## 14932   Jeff Foust            simplified    10 1573821 6.353963e-06
## 14933   Jeff Foust           simplifying    10 1573821 6.353963e-06
## 14934   Jeff Foust          simultaneous    10 1573821 6.353963e-06
## 14935   Jeff Foust                sinema    10 1573821 6.353963e-06
## 14936   Jeff Foust                skymed    10 1573821 6.353963e-06
## 14937   Jeff Foust              slipping    10 1573821 6.353963e-06
## 14938   Jeff Foust                 slows    10 1573821 6.353963e-06
## 14939   Jeff Foust                 sls’s    10 1573821 6.353963e-06
## 14940   Jeff Foust               smarter    10 1573821 6.353963e-06
## 14941   Jeff Foust                  sn10    10 1573821 6.353963e-06
## 14942   Jeff Foust               someday    10 1573821 6.353963e-06
## 14943   Jeff Foust                 sonic    10 1573821 6.353963e-06
## 14944   Jeff Foust                sortie    10 1573821 6.353963e-06
## 14945   Jeff Foust              spacedev    10 1573821 6.353963e-06
## 14946   Jeff Foust         spectrometers    10 1573821 6.353963e-06
## 14947   Jeff Foust         spectroscopic    10 1573821 6.353963e-06
## 14948   Jeff Foust              speeding    10 1573821 6.353963e-06
## 14949   Jeff Foust               spergel    10 1573821 6.353963e-06
## 14950   Jeff Foust                sphere    10 1573821 6.353963e-06
## 14951   Jeff Foust            sponsoring    10 1573821 6.353963e-06
## 14952   Jeff Foust                spudis    10 1573821 6.353963e-06
## 14953   Jeff Foust                stamps    10 1573821 6.353963e-06
## 14954   Jeff Foust              starfish    10 1573821 6.353963e-06
## 14955   Jeff Foust                 stark    10 1573821 6.353963e-06
## 14956   Jeff Foust             starships    10 1573821 6.353963e-06
## 14957   Jeff Foust               sticker    10 1573821 6.353963e-06
## 14958   Jeff Foust                stifle    10 1573821 6.353963e-06
## 14959   Jeff Foust             stockpile    10 1573821 6.353963e-06
## 14960   Jeff Foust              storable    10 1573821 6.353963e-06
## 14961   Jeff Foust               streams    10 1573821 6.353963e-06
## 14962   Jeff Foust              stripped    10 1573821 6.353963e-06
## 14963   Jeff Foust                stroup    10 1573821 6.353963e-06
## 14964   Jeff Foust                 style    10 1573821 6.353963e-06
## 14965   Jeff Foust              subscale    10 1573821 6.353963e-06
## 14966   Jeff Foust          subsidiaries    10 1573821 6.353963e-06
## 14967   Jeff Foust                   sue    10 1573821 6.353963e-06
## 14968   Jeff Foust                  suri    10 1573821 6.353963e-06
## 14969   Jeff Foust          surprisingly    10 1573821 6.353963e-06
## 14970   Jeff Foust         survivability    10 1573821 6.353963e-06
## 14971   Jeff Foust           sustainment    10 1573821 6.353963e-06
## 14972   Jeff Foust             sverchkov    10 1573821 6.353963e-06
## 14973   Jeff Foust               swapped    10 1573821 6.353963e-06
## 14974   Jeff Foust              symptoms    10 1573821 6.353963e-06
## 14975   Jeff Foust              systemic    10 1573821 6.353963e-06
## 14976   Jeff Foust              tangible    10 1573821 6.353963e-06
## 14977   Jeff Foust              teachers    10 1573821 6.353963e-06
## 14978   Jeff Foust              teamwork    10 1573821 6.353963e-06
## 14979   Jeff Foust                teflon    10 1573821 6.353963e-06
## 14980   Jeff Foust            thresholds    10 1573821 6.353963e-06
## 14981   Jeff Foust           thunderbolt    10 1573821 6.353963e-06
## 14982   Jeff Foust                  tian    10 1573821 6.353963e-06
## 14983   Jeff Foust                 tiers    10 1573821 6.353963e-06
## 14984   Jeff Foust              tiphaine    10 1573821 6.353963e-06
## 14985   Jeff Foust                  toll    10 1573821 6.353963e-06
## 14986   Jeff Foust              toulouse    10 1573821 6.353963e-06
## 14987   Jeff Foust          transitioned    10 1573821 6.353963e-06
## 14988   Jeff Foust           translation    10 1573821 6.353963e-06
## 14989   Jeff Foust             travelers    10 1573821 6.353963e-06
## 14990   Jeff Foust               trudeau    10 1573821 6.353963e-06
## 14991   Jeff Foust        turbomachinery    10 1573821 6.353963e-06
## 14992   Jeff Foust                   uhf    10 1573821 6.353963e-06
## 14993   Jeff Foust        uncontrollably    10 1573821 6.353963e-06
## 14994   Jeff Foust                unfair    10 1573821 6.353963e-06
## 14995   Jeff Foust             unlimited    10 1573821 6.353963e-06
## 14996   Jeff Foust          unreasonable    10 1573821 6.353963e-06
## 14997   Jeff Foust           unscheduled    10 1573821 6.353963e-06
## 14998   Jeff Foust            unseenlabs    10 1573821 6.353963e-06
## 14999   Jeff Foust              unstable    10 1573821 6.353963e-06
## 15000   Jeff Foust         unsustainable    10 1573821 6.353963e-06
## 15001   Jeff Foust                unused    10 1573821 6.353963e-06
## 15002   Jeff Foust             unwilling    10 1573821 6.353963e-06
## 15003   Jeff Foust                uphold    10 1573821 6.353963e-06
## 15004   Jeff Foust                upmass    10 1573821 6.353963e-06
## 15005   Jeff Foust             utilities    10 1573821 6.353963e-06
## 15006   Jeff Foust              variants    10 1573821 6.353963e-06
## 15007   Jeff Foust                vastly    10 1573821 6.353963e-06
## 15008   Jeff Foust                   vcs    10 1573821 6.353963e-06
## 15009   Jeff Foust                 vinci    10 1573821 6.353963e-06
## 15010   Jeff Foust                 vries    10 1573821 6.353963e-06
## 15011   Jeff Foust               vulcain    10 1573821 6.353963e-06
## 15012   Jeff Foust              webcasts    10 1573821 6.353963e-06
## 15013   Jeff Foust              weighted    10 1573821 6.353963e-06
## 15014   Jeff Foust                   wes    10 1573821 6.353963e-06
## 15015   Jeff Foust                whelan    10 1573821 6.353963e-06
## 15016   Jeff Foust               whitney    10 1573821 6.353963e-06
## 15017   Jeff Foust                 wiese    10 1573821 6.353963e-06
## 15018   Jeff Foust              wildfire    10 1573821 6.353963e-06
## 15019   Jeff Foust              windfall    10 1573821 6.353963e-06
## 15020   Jeff Foust                  wine    10 1573821 6.353963e-06
## 15021   Jeff Foust                wisdom    10 1573821 6.353963e-06
## 15022   Jeff Foust                worker    10 1573821 6.353963e-06
## 15023   Jeff Foust                wright    10 1573821 6.353963e-06
## 15024   Jeff Foust                  xarm    10 1573821 6.353963e-06
## 15025   Jeff Foust                yellow    10 1573821 6.353963e-06
## 15026   Jeff Foust                  yutu    10 1573821 6.353963e-06
## 15027   Jeff Foust                  zhou    10 1573821 6.353963e-06
## 15028   Jeff Foust               zipline    10 1573821 6.353963e-06
## 15029   Jeff Foust                zubrin    10 1573821 6.353963e-06
## 15030 Sandra Erwin                  35th    10  716353 1.395960e-05
## 15031 Sandra Erwin                  50th    10  716353 1.395960e-05
## 15032 Sandra Erwin                  53rd    10  716353 1.395960e-05
## 15033 Sandra Erwin                  abad    10  716353 1.395960e-05
## 15034 Sandra Erwin             accepting    10  716353 1.395960e-05
## 15035 Sandra Erwin                    ad    10  716353 1.395960e-05
## 15036 Sandra Erwin         affordability    10  716353 1.395960e-05
## 15037 Sandra Erwin                 aired    10  716353 1.395960e-05
## 15038 Sandra Erwin               airshow    10  716353 1.395960e-05
## 15039 Sandra Erwin                 alive    10  716353 1.395960e-05
## 15040 Sandra Erwin           anniversary    10  716353 1.395960e-05
## 15041 Sandra Erwin                apollo    10  716353 1.395960e-05
## 15042 Sandra Erwin           arianespace    10  716353 1.395960e-05
## 15043 Sandra Erwin                ascend    10  716353 1.395960e-05
## 15044 Sandra Erwin          associations    10  716353 1.395960e-05
## 15045 Sandra Erwin                attach    10  716353 1.395960e-05
## 15046 Sandra Erwin             attanasio    10  716353 1.395960e-05
## 15047 Sandra Erwin               awesome    10  716353 1.395960e-05
## 15048 Sandra Erwin               backlog    10  716353 1.395960e-05
## 15049 Sandra Erwin           battlefront    10  716353 1.395960e-05
## 15050 Sandra Erwin          battleground    10  716353 1.395960e-05
## 15051 Sandra Erwin                   bay    10  716353 1.395960e-05
## 15052 Sandra Erwin                 betty    10  716353 1.395960e-05
## 15053 Sandra Erwin                bingen    10  716353 1.395960e-05
## 15054 Sandra Erwin                 bloat    10  716353 1.395960e-05
## 15055 Sandra Erwin            blockchain    10  716353 1.395960e-05
## 15056 Sandra Erwin              bluehalo    10  716353 1.395960e-05
## 15057 Sandra Erwin              boosting    10  716353 1.395960e-05
## 15058 Sandra Erwin                  born    10  716353 1.395960e-05
## 15059 Sandra Erwin                   bow    10  716353 1.395960e-05
## 15060 Sandra Erwin                  brad    10  716353 1.395960e-05
## 15061 Sandra Erwin             brookings    10  716353 1.395960e-05
## 15062 Sandra Erwin                 bryce    10  716353 1.395960e-05
## 15063 Sandra Erwin               buehler    10  716353 1.395960e-05
## 15064 Sandra Erwin                cadman    10  716353 1.395960e-05
## 15065 Sandra Erwin            calculated    10  716353 1.395960e-05
## 15066 Sandra Erwin          california’s    10  716353 1.395960e-05
## 15067 Sandra Erwin               captain    10  716353 1.395960e-05
## 15068 Sandra Erwin               careers    10  716353 1.395960e-05
## 15069 Sandra Erwin             cellphone    10  716353 1.395960e-05
## 15070 Sandra Erwin             character    10  716353 1.395960e-05
## 15071 Sandra Erwin                 chase    10  716353 1.395960e-05
## 15072 Sandra Erwin                circle    10  716353 1.395960e-05
## 15073 Sandra Erwin               closest    10  716353 1.395960e-05
## 15074 Sandra Erwin              closures    10  716353 1.395960e-05
## 15075 Sandra Erwin               collide    10  716353 1.395960e-05
## 15076 Sandra Erwin            combustion    10  716353 1.395960e-05
## 15077 Sandra Erwin              commonly    10  716353 1.395960e-05
## 15078 Sandra Erwin           complements    10  716353 1.395960e-05
## 15079 Sandra Erwin          complicating    10  716353 1.395960e-05
## 15080 Sandra Erwin         concentration    10  716353 1.395960e-05
## 15081 Sandra Erwin              conclude    10  716353 1.395960e-05
## 15082 Sandra Erwin              confused    10  716353 1.395960e-05
## 15083 Sandra Erwin          consultation    10  716353 1.395960e-05
## 15084 Sandra Erwin             contacted    10  716353 1.395960e-05
## 15085 Sandra Erwin            contention    10  716353 1.395960e-05
## 15086 Sandra Erwin         contributions    10  716353 1.395960e-05
## 15087 Sandra Erwin               counted    10  716353 1.395960e-05
## 15088 Sandra Erwin   counterintelligence    10  716353 1.395960e-05
## 15089 Sandra Erwin             cryogenic    10  716353 1.395960e-05
## 15090 Sandra Erwin                   cso    10  716353 1.395960e-05
## 15091 Sandra Erwin           cyberattack    10  716353 1.395960e-05
## 15092 Sandra Erwin                cygnus    10  716353 1.395960e-05
## 15093 Sandra Erwin              dalbello    10  716353 1.395960e-05
## 15094 Sandra Erwin              datasets    10  716353 1.395960e-05
## 15095 Sandra Erwin                deaver    10  716353 1.395960e-05
## 15096 Sandra Erwin                 debra    10  716353 1.395960e-05
## 15097 Sandra Erwin            declassify    10  716353 1.395960e-05
## 15098 Sandra Erwin                defray    10  716353 1.395960e-05
## 15099 Sandra Erwin                depots    10  716353 1.395960e-05
## 15100 Sandra Erwin           description    10  716353 1.395960e-05
## 15101 Sandra Erwin              deserves    10  716353 1.395960e-05
## 15102 Sandra Erwin             designate    10  716353 1.395960e-05
## 15103 Sandra Erwin         destabilizing    10  716353 1.395960e-05
## 15104 Sandra Erwin            destroying    10  716353 1.395960e-05
## 15105 Sandra Erwin               detects    10  716353 1.395960e-05
## 15106 Sandra Erwin                   dhs    10  716353 1.395960e-05
## 15107 Sandra Erwin                dickey    10  716353 1.395960e-05
## 15108 Sandra Erwin                   die    10  716353 1.395960e-05
## 15109 Sandra Erwin                 digit    10  716353 1.395960e-05
## 15110 Sandra Erwin        discrimination    10  716353 1.395960e-05
## 15111 Sandra Erwin            disjointed    10  716353 1.395960e-05
## 15112 Sandra Erwin             disparate    10  716353 1.395960e-05
## 15113 Sandra Erwin               doubled    10  716353 1.395960e-05
## 15114 Sandra Erwin              download    10  716353 1.395960e-05
## 15115 Sandra Erwin                  dscs    10  716353 1.395960e-05
## 15116 Sandra Erwin                 dubyn    10  716353 1.395960e-05
## 15117 Sandra Erwin                   ehf    10  716353 1.395960e-05
## 15118 Sandra Erwin               elegant    10  716353 1.395960e-05
## 15119 Sandra Erwin            eliminates    10  716353 1.395960e-05
## 15120 Sandra Erwin                embark    10  716353 1.395960e-05
## 15121 Sandra Erwin            emphasized    10  716353 1.395960e-05
## 15122 Sandra Erwin                   ems    10  716353 1.395960e-05
## 15123 Sandra Erwin             enactment    10  716353 1.395960e-05
## 15124 Sandra Erwin            entrenched    10  716353 1.395960e-05
## 15125 Sandra Erwin          entrepreneur    10  716353 1.395960e-05
## 15126 Sandra Erwin           evaluations    10  716353 1.395960e-05
## 15127 Sandra Erwin           everybody’s    10  716353 1.395960e-05
## 15128 Sandra Erwin            explicitly    10  716353 1.395960e-05
## 15129 Sandra Erwin             explosion    10  716353 1.395960e-05
## 15130 Sandra Erwin       extraordinarily    10  716353 1.395960e-05
## 15131 Sandra Erwin               farther    10  716353 1.395960e-05
## 15132 Sandra Erwin               feeling    10  716353 1.395960e-05
## 15133 Sandra Erwin             feinstein    10  716353 1.395960e-05
## 15134 Sandra Erwin                female    10  716353 1.395960e-05
## 15135 Sandra Erwin               ferrari    10  716353 1.395960e-05
## 15136 Sandra Erwin              finalize    10  716353 1.395960e-05
## 15137 Sandra Erwin             firefly’s    10  716353 1.395960e-05
## 15138 Sandra Erwin                flewin    10  716353 1.395960e-05
## 15139 Sandra Erwin                  fold    10  716353 1.395960e-05
## 15140 Sandra Erwin                 forks    10  716353 1.395960e-05
## 15141 Sandra Erwin            formations    10  716353 1.395960e-05
## 15142 Sandra Erwin                foster    10  716353 1.395960e-05
## 15143 Sandra Erwin                 foust    10  716353 1.395960e-05
## 15144 Sandra Erwin                 frame    10  716353 1.395960e-05
## 15145 Sandra Erwin              ghataore    10  716353 1.395960e-05
## 15146 Sandra Erwin               godfrey    10  716353 1.395960e-05
## 15147 Sandra Erwin              google’s    10  716353 1.395960e-05
## 15148 Sandra Erwin                 grade    10  716353 1.395960e-05
## 15149 Sandra Erwin                 grail    10  716353 1.395960e-05
## 15150 Sandra Erwin                  hack    10  716353 1.395960e-05
## 15151 Sandra Erwin                  halt    10  716353 1.395960e-05
## 15152 Sandra Erwin               hanging    10  716353 1.395960e-05
## 15153 Sandra Erwin               hardest    10  716353 1.395960e-05
## 15154 Sandra Erwin                 hatch    10  716353 1.395960e-05
## 15155 Sandra Erwin                 heart    10  716353 1.395960e-05
## 15156 Sandra Erwin                  holy    10  716353 1.395960e-05
## 15157 Sandra Erwin                honest    10  716353 1.395960e-05
## 15158 Sandra Erwin                 hosts    10  716353 1.395960e-05
## 15159 Sandra Erwin               houston    10  716353 1.395960e-05
## 15160 Sandra Erwin               immense    10  716353 1.395960e-05
## 15161 Sandra Erwin             immersive    10  716353 1.395960e-05
## 15162 Sandra Erwin               implies    10  716353 1.395960e-05
## 15163 Sandra Erwin             inclusion    10  716353 1.395960e-05
## 15164 Sandra Erwin               indiana    10  716353 1.395960e-05
## 15165 Sandra Erwin           influential    10  716353 1.395960e-05
## 15166 Sandra Erwin             initiated    10  716353 1.395960e-05
## 15167 Sandra Erwin            innovating    10  716353 1.395960e-05
## 15168 Sandra Erwin              insiders    10  716353 1.395960e-05
## 15169 Sandra Erwin           inspections    10  716353 1.395960e-05
## 15170 Sandra Erwin             instantly    10  716353 1.395960e-05
## 15171 Sandra Erwin       instrumentation    10  716353 1.395960e-05
## 15172 Sandra Erwin             insurance    10  716353 1.395960e-05
## 15173 Sandra Erwin             intensity    10  716353 1.395960e-05
## 15174 Sandra Erwin           intercepted    10  716353 1.395960e-05
## 15175 Sandra Erwin            interviews    10  716353 1.395960e-05
## 15176 Sandra Erwin             iridium’s    10  716353 1.395960e-05
## 15177 Sandra Erwin             iterative    10  716353 1.395960e-05
## 15178 Sandra Erwin                jammer    10  716353 1.395960e-05
## 15179 Sandra Erwin                   jco    10  716353 1.395960e-05
## 15180 Sandra Erwin              judgment    10  716353 1.395960e-05
## 15181 Sandra Erwin                kehler    10  716353 1.395960e-05
## 15182 Sandra Erwin               klimkin    10  716353 1.395960e-05
## 15183 Sandra Erwin             kobayashi    10  716353 1.395960e-05
## 15184 Sandra Erwin             lafayette    10  716353 1.395960e-05
## 15185 Sandra Erwin               lawyers    10  716353 1.395960e-05
## 15186 Sandra Erwin               letting    10  716353 1.395960e-05
## 15187 Sandra Erwin                 loans    10  716353 1.395960e-05
## 15188 Sandra Erwin                 lyons    10  716353 1.395960e-05
## 15189 Sandra Erwin                 manzo    10  716353 1.395960e-05
## 15190 Sandra Erwin                  maru    10  716353 1.395960e-05
## 15191 Sandra Erwin                mccain    10  716353 1.395960e-05
## 15192 Sandra Erwin                  meps    10  716353 1.395960e-05
## 15193 Sandra Erwin                milsat    10  716353 1.395960e-05
## 15194 Sandra Erwin                  miss    10  716353 1.395960e-05
## 15195 Sandra Erwin                naming    10  716353 1.395960e-05
## 15196 Sandra Erwin             nanoracks    10  716353 1.395960e-05
## 15197 Sandra Erwin                nathan    10  716353 1.395960e-05
## 15198 Sandra Erwin             naturally    10  716353 1.395960e-05
## 15199 Sandra Erwin              newspace    10  716353 1.395960e-05
## 15200 Sandra Erwin           notoriously    10  716353 1.395960e-05
## 15201 Sandra Erwin                   nsr    10  716353 1.395960e-05
## 15202 Sandra Erwin                 nudol    10  716353 1.395960e-05
## 15203 Sandra Erwin             objection    10  716353 1.395960e-05
## 15204 Sandra Erwin                   omb    10  716353 1.395960e-05
## 15205 Sandra Erwin                 one’s    10  716353 1.395960e-05
## 15206 Sandra Erwin                 optus    10  716353 1.395960e-05
## 15207 Sandra Erwin                osprey    10  716353 1.395960e-05
## 15208 Sandra Erwin           overarching    10  716353 1.395960e-05
## 15209 Sandra Erwin                o’neil    10  716353 1.395960e-05
## 15210 Sandra Erwin                 packs    10  716353 1.395960e-05
## 15211 Sandra Erwin                 pages    10  716353 1.395960e-05
## 15212 Sandra Erwin                papers    10  716353 1.395960e-05
## 15213 Sandra Erwin                  pave    10  716353 1.395960e-05
## 15214 Sandra Erwin              pletcher    10  716353 1.395960e-05
## 15215 Sandra Erwin             populated    10  716353 1.395960e-05
## 15216 Sandra Erwin                poster    10  716353 1.395960e-05
## 15217 Sandra Erwin               prefers    10  716353 1.395960e-05
## 15218 Sandra Erwin               premium    10  716353 1.395960e-05
## 15219 Sandra Erwin              prevents    10  716353 1.395960e-05
## 15220 Sandra Erwin               probert    10  716353 1.395960e-05
## 15221 Sandra Erwin            profitable    10  716353 1.395960e-05
## 15222 Sandra Erwin                propel    10  716353 1.395960e-05
## 15223 Sandra Erwin                   qzs    10  716353 1.395960e-05
## 15224 Sandra Erwin                ranked    10  716353 1.395960e-05
## 15225 Sandra Erwin               rapuano    10  716353 1.395960e-05
## 15226 Sandra Erwin                   ray    10  716353 1.395960e-05
## 15227 Sandra Erwin               reaches    10  716353 1.395960e-05
## 15228 Sandra Erwin           reactivated    10  716353 1.395960e-05
## 15229 Sandra Erwin            reallocate    10  716353 1.395960e-05
## 15230 Sandra Erwin                reaper    10  716353 1.395960e-05
## 15231 Sandra Erwin              reckless    10  716353 1.395960e-05
## 15232 Sandra Erwin               regimes    10  716353 1.395960e-05
## 15233 Sandra Erwin              remained    10  716353 1.395960e-05
## 15234 Sandra Erwin          replacements    10  716353 1.395960e-05
## 15235 Sandra Erwin                  reps    10  716353 1.395960e-05
## 15236 Sandra Erwin            respective    10  716353 1.395960e-05
## 15237 Sandra Erwin             restricts    10  716353 1.395960e-05
## 15238 Sandra Erwin              returned    10  716353 1.395960e-05
## 15239 Sandra Erwin                 rides    10  716353 1.395960e-05
## 15240 Sandra Erwin                riding    10  716353 1.395960e-05
## 15241 Sandra Erwin                   rip    10  716353 1.395960e-05
## 15242 Sandra Erwin               rolling    10  716353 1.395960e-05
## 15243 Sandra Erwin                 ruled    10  716353 1.395960e-05
## 15244 Sandra Erwin                 ryder    10  716353 1.395960e-05
## 15245 Sandra Erwin             sabripour    10  716353 1.395960e-05
## 15246 Sandra Erwin                   sam    10  716353 1.395960e-05
## 15247 Sandra Erwin                samson    10  716353 1.395960e-05
## 15248 Sandra Erwin             sanctuary    10  716353 1.395960e-05
## 15249 Sandra Erwin                santos    10  716353 1.395960e-05
## 15250 Sandra Erwin               schools    10  716353 1.395960e-05
## 15251 Sandra Erwin                scitec    10  716353 1.395960e-05
## 15252 Sandra Erwin              sector’s    10  716353 1.395960e-05
## 15253 Sandra Erwin                seized    10  716353 1.395960e-05
## 15254 Sandra Erwin                 setup    10  716353 1.395960e-05
## 15255 Sandra Erwin               seventh    10  716353 1.395960e-05
## 15256 Sandra Erwin               shakeup    10  716353 1.395960e-05
## 15257 Sandra Erwin               sherman    10  716353 1.395960e-05
## 15258 Sandra Erwin              shipping    10  716353 1.395960e-05
## 15259 Sandra Erwin                shrink    10  716353 1.395960e-05
## 15260 Sandra Erwin             signaling    10  716353 1.395960e-05
## 15261 Sandra Erwin            signatures    10  716353 1.395960e-05
## 15262 Sandra Erwin            simplified    10  716353 1.395960e-05
## 15263 Sandra Erwin                  soil    10  716353 1.395960e-05
## 15264 Sandra Erwin               sounded    10  716353 1.395960e-05
## 15265 Sandra Erwin              sourcing    10  716353 1.395960e-05
## 15266 Sandra Erwin                 spacs    10  716353 1.395960e-05
## 15267 Sandra Erwin                  span    10  716353 1.395960e-05
## 15268 Sandra Erwin            specialist    10  716353 1.395960e-05
## 15269 Sandra Erwin            specialize    10  716353 1.395960e-05
## 15270 Sandra Erwin                  spur    10  716353 1.395960e-05
## 15271 Sandra Erwin                    sq    10  716353 1.395960e-05
## 15272 Sandra Erwin                   sst    10  716353 1.395960e-05
## 15273 Sandra Erwin              stanford    10  716353 1.395960e-05
## 15274 Sandra Erwin               state’s    10  716353 1.395960e-05
## 15275 Sandra Erwin                 steep    10  716353 1.395960e-05
## 15276 Sandra Erwin             strongest    10  716353 1.395960e-05
## 15277 Sandra Erwin            substitute    10  716353 1.395960e-05
## 15278 Sandra Erwin                sudden    10  716353 1.395960e-05
## 15279 Sandra Erwin                  suit    10  716353 1.395960e-05
## 15280 Sandra Erwin          supplemental    10  716353 1.395960e-05
## 15281 Sandra Erwin               suspend    10  716353 1.395960e-05
## 15282 Sandra Erwin               swiftly    10  716353 1.395960e-05
## 15283 Sandra Erwin               synergy    10  716353 1.395960e-05
## 15284 Sandra Erwin                  tail    10  716353 1.395960e-05
## 15285 Sandra Erwin                 teach    10  716353 1.395960e-05
## 15286 Sandra Erwin            techcrunch    10  716353 1.395960e-05
## 15287 Sandra Erwin             technique    10  716353 1.395960e-05
## 15288 Sandra Erwin           termination    10  716353 1.395960e-05
## 15289 Sandra Erwin          thornberry’s    10  716353 1.395960e-05
## 15290 Sandra Erwin            thoughtful    10  716353 1.395960e-05
## 15291 Sandra Erwin                trains    10  716353 1.395960e-05
## 15292 Sandra Erwin               treated    10  716353 1.395960e-05
## 15293 Sandra Erwin                  trip    10  716353 1.395960e-05
## 15294 Sandra Erwin                 troop    10  716353 1.395960e-05
## 15295 Sandra Erwin                    tv    10  716353 1.395960e-05
## 15296 Sandra Erwin            ukrainians    10  716353 1.395960e-05
## 15297 Sandra Erwin           undermining    10  716353 1.395960e-05
## 15298 Sandra Erwin                unfold    10  716353 1.395960e-05
## 15299 Sandra Erwin          unreasonable    10  716353 1.395960e-05
## 15300 Sandra Erwin                uphill    10  716353 1.395960e-05
## 15301 Sandra Erwin                upside    10  716353 1.395960e-05
## 15302 Sandra Erwin                 varda    10  716353 1.395960e-05
## 15303 Sandra Erwin             vibration    10  716353 1.395960e-05
## 15304 Sandra Erwin                 virus    10  716353 1.395960e-05
## 15305 Sandra Erwin                 vying    10  716353 1.395960e-05
## 15306 Sandra Erwin                 waive    10  716353 1.395960e-05
## 15307 Sandra Erwin               wargame    10  716353 1.395960e-05
## 15308 Sandra Erwin               wartime    10  716353 1.395960e-05
## 15309 Sandra Erwin                  weak    10  716353 1.395960e-05
## 15310 Sandra Erwin             weinstein    10  716353 1.395960e-05
## 15311 Sandra Erwin                 welsh    10  716353 1.395960e-05
## 15312 Sandra Erwin              wendling    10  716353 1.395960e-05
## 15313 Sandra Erwin             wildfires    10  716353 1.395960e-05
## 15314 Sandra Erwin               wrapped    10  716353 1.395960e-05
## 15315 Sandra Erwin                  xarc    10  716353 1.395960e-05
## 15316   Jeff Foust                   33e     9 1573821 5.718566e-06
## 15317   Jeff Foust                    3a     9 1573821 5.718566e-06
## 15318   Jeff Foust                   3sl     9 1573821 5.718566e-06
## 15319   Jeff Foust                    4e     9 1573821 5.718566e-06
## 15320   Jeff Foust                aborts     9 1573821 5.718566e-06
## 15321   Jeff Foust                abrupt     9 1573821 5.718566e-06
## 15322   Jeff Foust         accessibility     9 1573821 5.718566e-06
## 15323   Jeff Foust              acronyms     9 1573821 5.718566e-06
## 15324   Jeff Foust              adapters     9 1573821 5.718566e-06
## 15325   Jeff Foust              adaptive     9 1573821 5.718566e-06
## 15326   Jeff Foust           addressable     9 1573821 5.718566e-06
## 15327   Jeff Foust                adeona     9 1573821 5.718566e-06
## 15328   Jeff Foust             adherence     9 1573821 5.718566e-06
## 15329   Jeff Foust                  aero     9 1573821 5.718566e-06
## 15330   Jeff Foust            affordably     9 1573821 5.718566e-06
## 15331   Jeff Foust                   afp     9 1573821 5.718566e-06
## 15332   Jeff Foust              alphabet     9 1573821 5.718566e-06
## 15333   Jeff Foust           alternating     9 1573821 5.718566e-06
## 15334   Jeff Foust                   amc     9 1573821 5.718566e-06
## 15335   Jeff Foust                analog     9 1573821 5.718566e-06
## 15336   Jeff Foust             angelicvm     9 1573821 5.718566e-06
## 15337   Jeff Foust                antrix     9 1573821 5.718566e-06
## 15338   Jeff Foust               anymore     9 1573821 5.718566e-06
## 15339   Jeff Foust                   apt     9 1573821 5.718566e-06
## 15340   Jeff Foust                aquila     9 1573821 5.718566e-06
## 15341   Jeff Foust               arabian     9 1573821 5.718566e-06
## 15342   Jeff Foust             arceneaux     9 1573821 5.718566e-06
## 15343   Jeff Foust         architectural     9 1573821 5.718566e-06
## 15344   Jeff Foust                 arose     9 1573821 5.718566e-06
## 15345   Jeff Foust            articulate     9 1573821 5.718566e-06
## 15346   Jeff Foust         association’s     9 1573821 5.718566e-06
## 15347   Jeff Foust           astriagraph     9 1573821 5.718566e-06
## 15348   Jeff Foust               asylees     9 1573821 5.718566e-06
## 15349   Jeff Foust            attraction     9 1573821 5.718566e-06
## 15350   Jeff Foust             attrition     9 1573821 5.718566e-06
## 15351   Jeff Foust               austria     9 1573821 5.718566e-06
## 15352   Jeff Foust        authorizations     9 1573821 5.718566e-06
## 15353   Jeff Foust               authors     9 1573821 5.718566e-06
## 15354   Jeff Foust                avanti     9 1573821 5.718566e-06
## 15355   Jeff Foust                 awful     9 1573821 5.718566e-06
## 15356   Jeff Foust             azerspace     9 1573821 5.718566e-06
## 15357   Jeff Foust                babkin     9 1573821 5.718566e-06
## 15358   Jeff Foust                  baby     9 1573821 5.718566e-06
## 15359   Jeff Foust               banning     9 1573821 5.718566e-06
## 15360   Jeff Foust                  bans     9 1573821 5.718566e-06
## 15361   Jeff Foust               barring     9 1573821 5.718566e-06
## 15362   Jeff Foust               battles     9 1573821 5.718566e-06
## 15363   Jeff Foust             beauchamp     9 1573821 5.718566e-06
## 15364   Jeff Foust           beautifully     9 1573821 5.718566e-06
## 15365   Jeff Foust                becker     9 1573821 5.718566e-06
## 15366   Jeff Foust               belgium     9 1573821 5.718566e-06
## 15367   Jeff Foust            benefiting     9 1573821 5.718566e-06
## 15368   Jeff Foust                  bias     9 1573821 5.718566e-06
## 15369   Jeff Foust               biology     9 1573821 5.718566e-06
## 15370   Jeff Foust                  bits     9 1573821 5.718566e-06
## 15371   Jeff Foust           blackbridge     9 1573821 5.718566e-06
## 15372   Jeff Foust            blacksky’s     9 1573821 5.718566e-06
## 15373   Jeff Foust                 blind     9 1573821 5.718566e-06
## 15374   Jeff Foust                 blown     9 1573821 5.718566e-06
## 15375   Jeff Foust                bogdan     9 1573821 5.718566e-06
## 15376   Jeff Foust                boring     9 1573821 5.718566e-06
## 15377   Jeff Foust                bounce     9 1573821 5.718566e-06
## 15378   Jeff Foust                 boxes     9 1573821 5.718566e-06
## 15379   Jeff Foust               brannon     9 1573821 5.718566e-06
## 15380   Jeff Foust               breadth     9 1573821 5.718566e-06
## 15381   Jeff Foust                 bryan     9 1573821 5.718566e-06
## 15382   Jeff Foust                bumper     9 1573821 5.718566e-06
## 15383   Jeff Foust           businessman     9 1573821 5.718566e-06
## 15384   Jeff Foust                 buyer     9 1573821 5.718566e-06
## 15385   Jeff Foust           calculation     9 1573821 5.718566e-06
## 15386   Jeff Foust               calhoun     9 1573821 5.718566e-06
## 15387   Jeff Foust            campaign’s     9 1573821 5.718566e-06
## 15388   Jeff Foust            capitalist     9 1573821 5.718566e-06
## 15389   Jeff Foust              carnegie     9 1573821 5.718566e-06
## 15390   Jeff Foust                  cart     9 1573821 5.718566e-06
## 15391   Jeff Foust                 caryn     9 1573821 5.718566e-06
## 15392   Jeff Foust               casting     9 1573821 5.718566e-06
## 15393   Jeff Foust                chanda     9 1573821 5.718566e-06
## 15394   Jeff Foust               charity     9 1573821 5.718566e-06
## 15395   Jeff Foust                charts     9 1573821 5.718566e-06
## 15396   Jeff Foust                 cheli     9 1573821 5.718566e-06
## 15397   Jeff Foust                cheryl     9 1573821 5.718566e-06
## 15398   Jeff Foust                chirag     9 1573821 5.718566e-06
## 15399   Jeff Foust             christian     9 1573821 5.718566e-06
## 15400   Jeff Foust             circulars     9 1573821 5.718566e-06
## 15401   Jeff Foust         clarification     9 1573821 5.718566e-06
## 15402   Jeff Foust              classify     9 1573821 5.718566e-06
## 15403   Jeff Foust                clause     9 1573821 5.718566e-06
## 15404   Jeff Foust              clothing     9 1573821 5.718566e-06
## 15405   Jeff Foust                 clues     9 1573821 5.718566e-06
## 15406   Jeff Foust               coaster     9 1573821 5.718566e-06
## 15407   Jeff Foust               coating     9 1573821 5.718566e-06
## 15408   Jeff Foust                  coin     9 1573821 5.718566e-06
## 15409   Jeff Foust          collaborated     9 1573821 5.718566e-06
## 15410   Jeff Foust              colombia     9 1573821 5.718566e-06
## 15411   Jeff Foust               colonel     9 1573821 5.718566e-06
## 15412   Jeff Foust                comets     9 1573821 5.718566e-06
## 15413   Jeff Foust            commenting     9 1573821 5.718566e-06
## 15414   Jeff Foust           commodities     9 1573821 5.718566e-06
## 15415   Jeff Foust           commonplace     9 1573821 5.718566e-06
## 15416   Jeff Foust            competence     9 1573821 5.718566e-06
## 15417   Jeff Foust              competes     9 1573821 5.718566e-06
## 15418   Jeff Foust             complying     9 1573821 5.718566e-06
## 15419   Jeff Foust           consequence     9 1573821 5.718566e-06
## 15420   Jeff Foust             consortia     9 1573821 5.718566e-06
## 15421   Jeff Foust            contacting     9 1573821 5.718566e-06
## 15422   Jeff Foust             contrasts     9 1573821 5.718566e-06
## 15423   Jeff Foust               coronal     9 1573821 5.718566e-06
## 15424   Jeff Foust                 cosmo     9 1573821 5.718566e-06
## 15425   Jeff Foust                courts     9 1573821 5.718566e-06
## 15426   Jeff Foust              crafters     9 1573821 5.718566e-06
## 15427   Jeff Foust            crosslinks     9 1573821 5.718566e-06
## 15428   Jeff Foust                  crow     9 1573821 5.718566e-06
## 15429   Jeff Foust              crystals     9 1573821 5.718566e-06
## 15430   Jeff Foust                   csg     9 1573821 5.718566e-06
## 15431   Jeff Foust              currency     9 1573821 5.718566e-06
## 15432   Jeff Foust             customary     9 1573821 5.718566e-06
## 15433   Jeff Foust               cynthia     9 1573821 5.718566e-06
## 15434   Jeff Foust                darren     9 1573821 5.718566e-06
## 15435   Jeff Foust             databases     9 1573821 5.718566e-06
## 15436   Jeff Foust                dawn’s     9 1573821 5.718566e-06
## 15437   Jeff Foust                  dcvc     9 1573821 5.718566e-06
## 15438   Jeff Foust                deleon     9 1573821 5.718566e-06
## 15439   Jeff Foust               dempsey     9 1573821 5.718566e-06
## 15440   Jeff Foust               differs     9 1573821 5.718566e-06
## 15441   Jeff Foust               digging     9 1573821 5.718566e-06
## 15442   Jeff Foust           disassembly     9 1573821 5.718566e-06
## 15443   Jeff Foust            discipline     9 1573821 5.718566e-06
## 15444   Jeff Foust        discrimination     9 1573821 5.718566e-06
## 15445   Jeff Foust             discusses     9 1573821 5.718566e-06
## 15446   Jeff Foust             dislodged     9 1573821 5.718566e-06
## 15447   Jeff Foust            distribute     9 1573821 5.718566e-06
## 15448   Jeff Foust       diversification     9 1573821 5.718566e-06
## 15449   Jeff Foust                   doc     9 1573821 5.718566e-06
## 15450   Jeff Foust              dockings     9 1573821 5.718566e-06
## 15451   Jeff Foust                 dover     9 1573821 5.718566e-06
## 15452   Jeff Foust              download     9 1573821 5.718566e-06
## 15453   Jeff Foust               drifted     9 1573821 5.718566e-06
## 15454   Jeff Foust                 drink     9 1573821 5.718566e-06
## 15455   Jeff Foust               drought     9 1573821 5.718566e-06
## 15456   Jeff Foust                drying     9 1573821 5.718566e-06
## 15457   Jeff Foust             duricrust     9 1573821 5.718566e-06
## 15458   Jeff Foust                  dusk     9 1573821 5.718566e-06
## 15459   Jeff Foust                    ea     9 1573821 5.718566e-06
## 15460   Jeff Foust                 edges     9 1573821 5.718566e-06
## 15461   Jeff Foust                elaine     9 1573821 5.718566e-06
## 15462   Jeff Foust           electricity     9 1573821 5.718566e-06
## 15463   Jeff Foust                elkins     9 1573821 5.718566e-06
## 15464   Jeff Foust               emitted     9 1573821 5.718566e-06
## 15465   Jeff Foust              emmanuel     9 1573821 5.718566e-06
## 15466   Jeff Foust                employ     9 1573821 5.718566e-06
## 15467   Jeff Foust             energized     9 1573821 5.718566e-06
## 15468   Jeff Foust            enormously     9 1573821 5.718566e-06
## 15469   Jeff Foust               ensured     9 1573821 5.718566e-06
## 15470   Jeff Foust               escaped     9 1573821 5.718566e-06
## 15471   Jeff Foust                   eso     9 1573821 5.718566e-06
## 15472   Jeff Foust                  espa     9 1573821 5.718566e-06
## 15473   Jeff Foust             evaluates     9 1573821 5.718566e-06
## 15474   Jeff Foust            exactearth     9 1573821 5.718566e-06
## 15475   Jeff Foust            exhibition     9 1573821 5.718566e-06
## 15476   Jeff Foust           existential     9 1573821 5.718566e-06
## 15477   Jeff Foust             expansive     9 1573821 5.718566e-06
## 15478   Jeff Foust           expenditure     9 1573821 5.718566e-06
## 15479   Jeff Foust           expensively     9 1573821 5.718566e-06
## 15480   Jeff Foust           fascinating     9 1573821 5.718566e-06
## 15481   Jeff Foust             fasteners     9 1573821 5.718566e-06
## 15482   Jeff Foust               favored     9 1573821 5.718566e-06
## 15483   Jeff Foust          feathercraft     9 1573821 5.718566e-06
## 15484   Jeff Foust                 fifty     9 1573821 5.718566e-06
## 15485   Jeff Foust                filmed     9 1573821 5.718566e-06
## 15486   Jeff Foust             firsthand     9 1573821 5.718566e-06
## 15487   Jeff Foust                fisher     9 1573821 5.718566e-06
## 15488   Jeff Foust              fixtures     9 1573821 5.718566e-06
## 15489   Jeff Foust                fleets     9 1573821 5.718566e-06
## 15490   Jeff Foust              fletcher     9 1573821 5.718566e-06
## 15491   Jeff Foust                   fog     9 1573821 5.718566e-06
## 15492   Jeff Foust                forbes     9 1573821 5.718566e-06
## 15493   Jeff Foust                 forty     9 1573821 5.718566e-06
## 15494   Jeff Foust                 freed     9 1573821 5.718566e-06
## 15495   Jeff Foust                fronts     9 1573821 5.718566e-06
## 15496   Jeff Foust                 fuchs     9 1573821 5.718566e-06
## 15497   Jeff Foust              furukawa     9 1573821 5.718566e-06
## 15498   Jeff Foust                    ga     9 1573821 5.718566e-06
## 15499   Jeff Foust                 games     9 1573821 5.718566e-06
## 15500   Jeff Foust               gehrels     9 1573821 5.718566e-06
## 15501   Jeff Foust                 geoff     9 1573821 5.718566e-06
## 15502   Jeff Foust           geomagnetic     9 1573821 5.718566e-06
## 15503   Jeff Foust             georgia’s     9 1573821 5.718566e-06
## 15504   Jeff Foust             germany’s     9 1573821 5.718566e-06
## 15505   Jeff Foust                giants     9 1573821 5.718566e-06
## 15506   Jeff Foust             gigabytes     9 1573821 5.718566e-06
## 15507   Jeff Foust                giulio     9 1573821 5.718566e-06
## 15508   Jeff Foust                  glen     9 1573821 5.718566e-06
## 15509   Jeff Foust                   gms     9 1573821 5.718566e-06
## 15510   Jeff Foust                   gmt     9 1573821 5.718566e-06
## 15511   Jeff Foust               goldman     9 1573821 5.718566e-06
## 15512   Jeff Foust              greenley     9 1573821 5.718566e-06
## 15513   Jeff Foust                 grotz     9 1573821 5.718566e-06
## 15514   Jeff Foust               guillen     9 1573821 5.718566e-06
## 15515   Jeff Foust                 haleu     9 1573821 5.718566e-06
## 15516   Jeff Foust                harold     9 1573821 5.718566e-06
## 15517   Jeff Foust                harper     9 1573821 5.718566e-06
## 15518   Jeff Foust                harvey     9 1573821 5.718566e-06
## 15519   Jeff Foust              hassmann     9 1573821 5.718566e-06
## 15520   Jeff Foust                  hazy     9 1573821 5.718566e-06
## 15521   Jeff Foust               heights     9 1573821 5.718566e-06
## 15522   Jeff Foust              hitching     9 1573821 5.718566e-06
## 15523   Jeff Foust             houston’s     9 1573821 5.718566e-06
## 15524   Jeff Foust                 hover     9 1573821 5.718566e-06
## 15525   Jeff Foust                  htpb     9 1573821 5.718566e-06
## 15526   Jeff Foust                    hu     9 1573821 5.718566e-06
## 15527   Jeff Foust               humbled     9 1573821 5.718566e-06
## 15528   Jeff Foust                  huot     9 1573821 5.718566e-06
## 15529   Jeff Foust                  hype     9 1573821 5.718566e-06
## 15530   Jeff Foust          hypothetical     9 1573821 5.718566e-06
## 15531   Jeff Foust               illegal     9 1573821 5.718566e-06
## 15532   Jeff Foust               illness     9 1573821 5.718566e-06
## 15533   Jeff Foust              immature     9 1573821 5.718566e-06
## 15534   Jeff Foust            imminently     9 1573821 5.718566e-06
## 15535   Jeff Foust                  im’s     9 1573821 5.718566e-06
## 15536   Jeff Foust            inaccurate     9 1573821 5.718566e-06
## 15537   Jeff Foust         inappropriate     9 1573821 5.718566e-06
## 15538   Jeff Foust           incorrectly     9 1573821 5.718566e-06
## 15539   Jeff Foust                 index     9 1573821 5.718566e-06
## 15540   Jeff Foust              indirect     9 1573821 5.718566e-06
## 15541   Jeff Foust            indonesian     9 1573821 5.718566e-06
## 15542   Jeff Foust                 ingle     9 1573821 5.718566e-06
## 15543   Jeff Foust             inhabited     9 1573821 5.718566e-06
## 15544   Jeff Foust               inhibit     9 1573821 5.718566e-06
## 15545   Jeff Foust            inmarsat’s     9 1573821 5.718566e-06
## 15546   Jeff Foust              inserted     9 1573821 5.718566e-06
## 15547   Jeff Foust               instant     9 1573821 5.718566e-06
## 15548   Jeff Foust               insurer     9 1573821 5.718566e-06
## 15549   Jeff Foust           intelligent     9 1573821 5.718566e-06
## 15550   Jeff Foust           interceptor     9 1573821 5.718566e-06
## 15551   Jeff Foust             intrusion     9 1573821 5.718566e-06
## 15552   Jeff Foust              inviting     9 1573821 5.718566e-06
## 15553   Jeff Foust                 irnss     9 1573821 5.718566e-06
## 15554   Jeff Foust              israel’s     9 1573821 5.718566e-06
## 15555   Jeff Foust            iterations     9 1573821 5.718566e-06
## 15556   Jeff Foust                   jen     9 1573821 5.718566e-06
## 15557   Jeff Foust             jerusalem     9 1573821 5.718566e-06
## 15558   Jeff Foust              jetliner     9 1573821 5.718566e-06
## 15559   Jeff Foust                  jets     9 1573821 5.718566e-06
## 15560   Jeff Foust            journalist     9 1573821 5.718566e-06
## 15561   Jeff Foust                jumped     9 1573821 5.718566e-06
## 15562   Jeff Foust                   kam     9 1573821 5.718566e-06
## 15563   Jeff Foust               kanopus     9 1573821 5.718566e-06
## 15564   Jeff Foust              kazachok     9 1573821 5.718566e-06
## 15565   Jeff Foust                  keen     9 1573821 5.718566e-06
## 15566   Jeff Foust                 kiran     9 1573821 5.718566e-06
## 15567   Jeff Foust               korea’s     9 1573821 5.718566e-06
## 15568   Jeff Foust                kovacs     9 1573821 5.718566e-06
## 15569   Jeff Foust                 kyodo     9 1573821 5.718566e-06
## 15570   Jeff Foust                    l5     9 1573821 5.718566e-06
## 15571   Jeff Foust               laidley     9 1573821 5.718566e-06
## 15572   Jeff Foust               latched     9 1573821 5.718566e-06
## 15573   Jeff Foust               latimer     9 1573821 5.718566e-06
## 15574   Jeff Foust               laurini     9 1573821 5.718566e-06
## 15575   Jeff Foust                  lays     9 1573821 5.718566e-06
## 15576   Jeff Foust           legislators     9 1573821 5.718566e-06
## 15577   Jeff Foust                   lff     9 1573821 5.718566e-06
## 15578   Jeff Foust                 lifts     9 1573821 5.718566e-06
## 15579   Jeff Foust            lightcurve     9 1573821 5.718566e-06
## 15580   Jeff Foust           lightfoot’s     9 1573821 5.718566e-06
## 15581   Jeff Foust                 likes     9 1573821 5.718566e-06
## 15582   Jeff Foust           liquidation     9 1573821 5.718566e-06
## 15583   Jeff Foust               lofgren     9 1573821 5.718566e-06
## 15584   Jeff Foust                 logos     9 1573821 5.718566e-06
## 15585   Jeff Foust                  loud     9 1573821 5.718566e-06
## 15586   Jeff Foust                    lu     9 1573821 5.718566e-06
## 15587   Jeff Foust                lummis     9 1573821 5.718566e-06
## 15588   Jeff Foust             machinery     9 1573821 5.718566e-06
## 15589   Jeff Foust           malenchenko     9 1573821 5.718566e-06
## 15590   Jeff Foust          malfunctions     9 1573821 5.718566e-06
## 15591   Jeff Foust             manager’s     9 1573821 5.718566e-06
## 15592   Jeff Foust              marathon     9 1573821 5.718566e-06
## 15593   Jeff Foust                 masks     9 1573821 5.718566e-06
## 15594   Jeff Foust                  math     9 1573821 5.718566e-06
## 15595   Jeff Foust             mclachlan     9 1573821 5.718566e-06
## 15596   Jeff Foust                 mello     9 1573821 5.718566e-06
## 15597   Jeff Foust             memoranda     9 1573821 5.718566e-06
## 15598   Jeff Foust             mentality     9 1573821 5.718566e-06
## 15599   Jeff Foust                  mice     9 1573821 5.718566e-06
## 15600   Jeff Foust                michel     9 1573821 5.718566e-06
## 15601   Jeff Foust            microwaves     9 1573821 5.718566e-06
## 15602   Jeff Foust            millennium     9 1573821 5.718566e-06
## 15603   Jeff Foust            misleading     9 1573821 5.718566e-06
## 15604   Jeff Foust               mnuchin     9 1573821 5.718566e-06
## 15605   Jeff Foust                   mod     9 1573821 5.718566e-06
## 15606   Jeff Foust         modernization     9 1573821 5.718566e-06
## 15607   Jeff Foust            momentus’s     9 1573821 5.718566e-06
## 15608   Jeff Foust             moonwalks     9 1573821 5.718566e-06
## 15609   Jeff Foust              mounting     9 1573821 5.718566e-06
## 15610   Jeff Foust                 mover     9 1573821 5.718566e-06
## 15611   Jeff Foust              mulvaney     9 1573821 5.718566e-06
## 15612   Jeff Foust              museum’s     9 1573821 5.718566e-06
## 15613   Jeff Foust                   n.j     9 1573821 5.718566e-06
## 15614   Jeff Foust                  nail     9 1573821 5.718566e-06
## 15615   Jeff Foust             narrowing     9 1573821 5.718566e-06
## 15616   Jeff Foust           negotiators     9 1573821 5.718566e-06
## 15617   Jeff Foust          neighborhood     9 1573821 5.718566e-06
## 15618   Jeff Foust               neowise     9 1573821 5.718566e-06
## 15619   Jeff Foust                nesdis     9 1573821 5.718566e-06
## 15620   Jeff Foust              newman’s     9 1573821 5.718566e-06
## 15621   Jeff Foust                  niac     9 1573821 5.718566e-06
## 15622   Jeff Foust                 nicer     9 1573821 5.718566e-06
## 15623   Jeff Foust                nircam     9 1573821 5.718566e-06
## 15624   Jeff Foust                    nk     9 1573821 5.718566e-06
## 15625   Jeff Foust              nobody’s     9 1573821 5.718566e-06
## 15626   Jeff Foust           nonpartisan     9 1573821 5.718566e-06
## 15627   Jeff Foust            notionally     9 1573821 5.718566e-06
## 15628   Jeff Foust               nozzles     9 1573821 5.718566e-06
## 15629   Jeff Foust                  nspo     9 1573821 5.718566e-06
## 15630   Jeff Foust               nuanced     9 1573821 5.718566e-06
## 15631   Jeff Foust              nybakken     9 1573821 5.718566e-06
## 15632   Jeff Foust         observational     9 1573821 5.718566e-06
## 15633   Jeff Foust          occasionally     9 1573821 5.718566e-06
## 15634   Jeff Foust               oceanus     9 1573821 5.718566e-06
## 15635   Jeff Foust                  odom     9 1573821 5.718566e-06
## 15636   Jeff Foust                 okada     9 1573821 5.718566e-06
## 15637   Jeff Foust                oldham     9 1573821 5.718566e-06
## 15638   Jeff Foust               onstage     9 1573821 5.718566e-06
## 15639   Jeff Foust                 optic     9 1573821 5.718566e-06
## 15640   Jeff Foust            originated     9 1573821 5.718566e-06
## 15641   Jeff Foust                   otb     9 1573821 5.718566e-06
## 15642   Jeff Foust              outyears     9 1573821 5.718566e-06
## 15643   Jeff Foust           overlapping     9 1573821 5.718566e-06
## 15644   Jeff Foust                o’neil     9 1573821 5.718566e-06
## 15645   Jeff Foust                 paces     9 1573821 5.718566e-06
## 15646   Jeff Foust                 paint     9 1573821 5.718566e-06
## 15647   Jeff Foust            parachuted     9 1573821 5.718566e-06
## 15648   Jeff Foust               paragon     9 1573821 5.718566e-06
## 15649   Jeff Foust             paramount     9 1573821 5.718566e-06
## 15650   Jeff Foust               party’s     9 1573821 5.718566e-06
## 15651   Jeff Foust                  pell     9 1573821 5.718566e-06
## 15652   Jeff Foust             penetrate     9 1573821 5.718566e-06
## 15653   Jeff Foust            photometry     9 1573821 5.718566e-06
## 15654   Jeff Foust            physicists     9 1573821 5.718566e-06
## 15655   Jeff Foust                    pi     9 1573821 5.718566e-06
## 15656   Jeff Foust                  pirs     9 1573821 5.718566e-06
## 15657   Jeff Foust             plummeted     9 1573821 5.718566e-06
## 15658   Jeff Foust          polarization     9 1573821 5.718566e-06
## 15659   Jeff Foust              predicts     9 1573821 5.718566e-06
## 15660   Jeff Foust            preeminent     9 1573821 5.718566e-06
## 15661   Jeff Foust                preset     9 1573821 5.718566e-06
## 15662   Jeff Foust           procellarum     9 1573821 5.718566e-06
## 15663   Jeff Foust              promotes     9 1573821 5.718566e-06
## 15664   Jeff Foust           prototyping     9 1573821 5.718566e-06
## 15665   Jeff Foust                pulses     9 1573821 5.718566e-06
## 15666   Jeff Foust              pursuits     9 1573821 5.718566e-06
## 15667   Jeff Foust             qualities     9 1573821 5.718566e-06
## 15668   Jeff Foust                 rafti     9 1573821 5.718566e-06
## 15669   Jeff Foust                 rally     9 1573821 5.718566e-06
## 15670   Jeff Foust               rassvet     9 1573821 5.718566e-06
## 15671   Jeff Foust                  rcns     9 1573821 5.718566e-06
## 15672   Jeff Foust              realtime     9 1573821 5.718566e-06
## 15673   Jeff Foust         reassignments     9 1573821 5.718566e-06
## 15674   Jeff Foust          reauthorized     9 1573821 5.718566e-06
## 15675   Jeff Foust                reaver     9 1573821 5.718566e-06
## 15676   Jeff Foust                reboot     9 1573821 5.718566e-06
## 15677   Jeff Foust              receiver     9 1573821 5.718566e-06
## 15678   Jeff Foust             receivers     9 1573821 5.718566e-06
## 15679   Jeff Foust           reconciling     9 1573821 5.718566e-06
## 15680   Jeff Foust         reimbursement     9 1573821 5.718566e-06
## 15681   Jeff Foust                remind     9 1573821 5.718566e-06
## 15682   Jeff Foust              reorient     9 1573821 5.718566e-06
## 15683   Jeff Foust            replanning     9 1573821 5.718566e-06
## 15684   Jeff Foust               replied     9 1573821 5.718566e-06
## 15685   Jeff Foust            repurposed     9 1573821 5.718566e-06
## 15686   Jeff Foust          rescheduling     9 1573821 5.718566e-06
## 15687   Jeff Foust             resigning     9 1573821 5.718566e-06
## 15688   Jeff Foust                resist     9 1573821 5.718566e-06
## 15689   Jeff Foust        retroreflector     9 1573821 5.718566e-06
## 15690   Jeff Foust             revealing     9 1573821 5.718566e-06
## 15691   Jeff Foust                    rf     9 1573821 5.718566e-06
## 15692   Jeff Foust                ribbon     9 1573821 5.718566e-06
## 15693   Jeff Foust                  rigs     9 1573821 5.718566e-06
## 15694   Jeff Foust                risked     9 1573821 5.718566e-06
## 15695   Jeff Foust              riskiest     9 1573821 5.718566e-06
## 15696   Jeff Foust                   roc     9 1573821 5.718566e-06
## 15697   Jeff Foust              rocketry     9 1573821 5.718566e-06
## 15698   Jeff Foust                rodent     9 1573821 5.718566e-06
## 15699   Jeff Foust                ronald     9 1573821 5.718566e-06
## 15700   Jeff Foust                  rora     9 1573821 5.718566e-06
## 15701   Jeff Foust                  roth     9 1573821 5.718566e-06
## 15702   Jeff Foust               runaway     9 1573821 5.718566e-06
## 15703   Jeff Foust                rushed     9 1573821 5.718566e-06
## 15704   Jeff Foust                 sachs     9 1573821 5.718566e-06
## 15705   Jeff Foust                 salem     9 1573821 5.718566e-06
## 15706   Jeff Foust               salvage     9 1573821 5.718566e-06
## 15707   Jeff Foust              schahaff     9 1573821 5.718566e-06
## 15708   Jeff Foust                schiel     9 1573821 5.718566e-06
## 15709   Jeff Foust               scitech     9 1573821 5.718566e-06
## 15710   Jeff Foust                scotia     9 1573821 5.718566e-06
## 15711   Jeff Foust              scouting     9 1573821 5.718566e-06
## 15712   Jeff Foust                   sdl     9 1573821 5.718566e-06
## 15713   Jeff Foust           secretaries     9 1573821 5.718566e-06
## 15714   Jeff Foust             sembroski     9 1573821 5.718566e-06
## 15715   Jeff Foust        semiconductors     9 1573821 5.718566e-06
## 15716   Jeff Foust             sentiment     9 1573821 5.718566e-06
## 15717   Jeff Foust                serial     9 1573821 5.718566e-06
## 15718   Jeff Foust           settlements     9 1573821 5.718566e-06
## 15719   Jeff Foust              settling     9 1573821 5.718566e-06
## 15720   Jeff Foust                sharaf     9 1573821 5.718566e-06
## 15721   Jeff Foust                shasta     9 1573821 5.718566e-06
## 15722   Jeff Foust               shelter     9 1573821 5.718566e-06
## 15723   Jeff Foust              shielded     9 1573821 5.718566e-06
## 15724   Jeff Foust                 shoji     9 1573821 5.718566e-06
## 15725   Jeff Foust                 shore     9 1573821 5.718566e-06
## 15726   Jeff Foust             sidelines     9 1573821 5.718566e-06
## 15727   Jeff Foust               silence     9 1573821 5.718566e-06
## 15728   Jeff Foust                 silly     9 1573821 5.718566e-06
## 15729   Jeff Foust             simonetta     9 1573821 5.718566e-06
## 15730   Jeff Foust               siquier     9 1573821 5.718566e-06
## 15731   Jeff Foust                sitael     9 1573821 5.718566e-06
## 15732   Jeff Foust                  skin     9 1573821 5.718566e-06
## 15733   Jeff Foust               skylark     9 1573821 5.718566e-06
## 15734   Jeff Foust               smith’s     9 1573821 5.718566e-06
## 15735   Jeff Foust               smrekar     9 1573821 5.718566e-06
## 15736   Jeff Foust                   sn5     9 1573821 5.718566e-06
## 15737   Jeff Foust              societal     9 1573821 5.718566e-06
## 15738   Jeff Foust             sojourner     9 1573821 5.718566e-06
## 15739   Jeff Foust               solaris     9 1573821 5.718566e-06
## 15740   Jeff Foust                solder     9 1573821 5.718566e-06
## 15741   Jeff Foust               soyuz’s     9 1573821 5.718566e-06
## 15742   Jeff Foust            spacecom’s     9 1573821 5.718566e-06
## 15743   Jeff Foust             spaceline     9 1573821 5.718566e-06
## 15744   Jeff Foust spacepolicyonline.com     9 1573821 5.718566e-06
## 15745   Jeff Foust          spacewalking     9 1573821 5.718566e-06
## 15746   Jeff Foust                 spark     9 1573821 5.718566e-06
## 15747   Jeff Foust               spatial     9 1573821 5.718566e-06
## 15748   Jeff Foust           specializes     9 1573821 5.718566e-06
## 15749   Jeff Foust                 spots     9 1573821 5.718566e-06
## 15750   Jeff Foust                  ssms     9 1573821 5.718566e-06
## 15751   Jeff Foust            stafford’s     9 1573821 5.718566e-06
## 15752   Jeff Foust              stardust     9 1573821 5.718566e-06
## 15753   Jeff Foust            starlink’s     9 1573821 5.718566e-06
## 15754   Jeff Foust         steppingstone     9 1573821 5.718566e-06
## 15755   Jeff Foust                 stint     9 1573821 5.718566e-06
## 15756   Jeff Foust               storing     9 1573821 5.718566e-06
## 15757   Jeff Foust              strained     9 1573821 5.718566e-06
## 15758   Jeff Foust                strive     9 1573821 5.718566e-06
## 15759   Jeff Foust               submits     9 1573821 5.718566e-06
## 15760   Jeff Foust            subsidized     9 1573821 5.718566e-06
## 15761   Jeff Foust                subtly     9 1573821 5.718566e-06
## 15762   Jeff Foust            suggestion     9 1573821 5.718566e-06
## 15763   Jeff Foust                sunita     9 1573821 5.718566e-06
## 15764   Jeff Foust             superview     9 1573821 5.718566e-06
## 15765   Jeff Foust           supervisors     9 1573821 5.718566e-06
## 15766   Jeff Foust                surely     9 1573821 5.718566e-06
## 15767   Jeff Foust              survival     9 1573821 5.718566e-06
## 15768   Jeff Foust           susceptible     9 1573821 5.718566e-06
## 15769   Jeff Foust               swarm’s     9 1573821 5.718566e-06
## 15770   Jeff Foust              syndrome     9 1573821 5.718566e-06
## 15771   Jeff Foust                 syria     9 1573821 5.718566e-06
## 15772   Jeff Foust             taiwanese     9 1573821 5.718566e-06
## 15773   Jeff Foust                 tammy     9 1573821 5.718566e-06
## 15774   Jeff Foust                tansat     9 1573821 5.718566e-06
## 15775   Jeff Foust                tanton     9 1573821 5.718566e-06
## 15776   Jeff Foust                   teb     9 1573821 5.718566e-06
## 15777   Jeff Foust          technology’s     9 1573821 5.718566e-06
## 15778   Jeff Foust              teledyne     9 1573821 5.718566e-06
## 15779   Jeff Foust               tenants     9 1573821 5.718566e-06
## 15780   Jeff Foust             tentative     9 1573821 5.718566e-06
## 15781   Jeff Foust             terabytes     9 1573821 5.718566e-06
## 15782   Jeff Foust           terminology     9 1573821 5.718566e-06
## 15783   Jeff Foust                 terry     9 1573821 5.718566e-06
## 15784   Jeff Foust                they’d     9 1573821 5.718566e-06
## 15785   Jeff Foust         thunderstorms     9 1573821 5.718566e-06
## 15786   Jeff Foust                tilman     9 1573821 5.718566e-06
## 15787   Jeff Foust                  tilt     9 1573821 5.718566e-06
## 15788   Jeff Foust             trademark     9 1573821 5.718566e-06
## 15789   Jeff Foust                 trail     9 1573821 5.718566e-06
## 15790   Jeff Foust              transits     9 1573821 5.718566e-06
## 15791   Jeff Foust             treasurer     9 1573821 5.718566e-06
## 15792   Jeff Foust                tricky     9 1573821 5.718566e-06
## 15793   Jeff Foust              tripling     9 1573821 5.718566e-06
## 15794   Jeff Foust                triton     9 1573821 5.718566e-06
## 15795   Jeff Foust               trucked     9 1573821 5.718566e-06
## 15796   Jeff Foust                trucks     9 1573821 5.718566e-06
## 15797   Jeff Foust              tweeting     9 1573821 5.718566e-06
## 15798   Jeff Foust                 udvar     9 1573821 5.718566e-06
## 15799   Jeff Foust             unberthed     9 1573821 5.718566e-06
## 15800   Jeff Foust             undefined     9 1573821 5.718566e-06
## 15801   Jeff Foust                upload     9 1573821 5.718566e-06
## 15802   Jeff Foust              urgently     9 1573821 5.718566e-06
## 15803   Jeff Foust            usefulness     9 1573821 5.718566e-06
## 15804   Jeff Foust                 usher     9 1573821 5.718566e-06
## 15805   Jeff Foust                   uss     9 1573821 5.718566e-06
## 15806   Jeff Foust            validating     9 1573821 5.718566e-06
## 15807   Jeff Foust              variable     9 1573821 5.718566e-06
## 15808   Jeff Foust               venting     9 1573821 5.718566e-06
## 15809   Jeff Foust             versatile     9 1573821 5.718566e-06
## 15810   Jeff Foust              vigilant     9 1573821 5.718566e-06
## 15811   Jeff Foust            vigorously     9 1573821 5.718566e-06
## 15812   Jeff Foust                 villa     9 1573821 5.718566e-06
## 15813   Jeff Foust                 virts     9 1573821 5.718566e-06
## 15814   Jeff Foust            volatility     9 1573821 5.718566e-06
## 15815   Jeff Foust             volcanoes     9 1573821 5.718566e-06
## 15816   Jeff Foust                volkov     9 1573821 5.718566e-06
## 15817   Jeff Foust                 vowed     9 1573821 5.718566e-06
## 15818   Jeff Foust             voyager’s     9 1573821 5.718566e-06
## 15819   Jeff Foust                 walls     9 1573821 5.718566e-06
## 15820   Jeff Foust                 waltz     9 1573821 5.718566e-06
## 15821   Jeff Foust                 wandt     9 1573821 5.718566e-06
## 15822   Jeff Foust                  wars     9 1573821 5.718566e-06
## 15823   Jeff Foust              websites     9 1573821 5.718566e-06
## 15824   Jeff Foust                  weld     9 1573821 5.718566e-06
## 15825   Jeff Foust                wildly     9 1573821 5.718566e-06
## 15826   Jeff Foust             wisconsin     9 1573821 5.718566e-06
## 15827   Jeff Foust             withdrawn     9 1573821 5.718566e-06
## 15828   Jeff Foust             witnessed     9 1573821 5.718566e-06
## 15829   Jeff Foust            witnessing     9 1573821 5.718566e-06
## 15830   Jeff Foust              worrying     9 1573821 5.718566e-06
## 15831   Jeff Foust                   wyo     9 1573821 5.718566e-06
## 15832   Jeff Foust               xichang     9 1573821 5.718566e-06
## 15833   Jeff Foust                 zurek     9 1573821 5.718566e-06
## 15834 Sandra Erwin                  12th     9  716353 1.256364e-05
## 15835 Sandra Erwin                  180s     9  716353 1.256364e-05
## 15836 Sandra Erwin                   2nd     9  716353 1.256364e-05
## 15837 Sandra Erwin                    3u     9  716353 1.256364e-05
## 15838 Sandra Erwin       accomplishments     9  716353 1.256364e-05
## 15839 Sandra Erwin              activate     9  716353 1.256364e-05
## 15840 Sandra Erwin           addressable     9  716353 1.256364e-05
## 15841 Sandra Erwin               admiral     9  716353 1.256364e-05
## 15842 Sandra Erwin          advantageous     9  716353 1.256364e-05
## 15843 Sandra Erwin               advised     9  716353 1.256364e-05
## 15844 Sandra Erwin                  afss     9  716353 1.256364e-05
## 15845 Sandra Erwin             aggressor     9  716353 1.256364e-05
## 15846 Sandra Erwin                  alex     9  716353 1.256364e-05
## 15847 Sandra Erwin              aligning     9  716353 1.256364e-05
## 15848 Sandra Erwin             alternate     9  716353 1.256364e-05
## 15849 Sandra Erwin                  amos     9  716353 1.256364e-05
## 15850 Sandra Erwin                appeal     9  716353 1.256364e-05
## 15851 Sandra Erwin           approaching     9  716353 1.256364e-05
## 15852 Sandra Erwin                 arise     9  716353 1.256364e-05
## 15853 Sandra Erwin                   ark     9  716353 1.256364e-05
## 15854 Sandra Erwin              articles     9  716353 1.256364e-05
## 15855 Sandra Erwin             assertion     9  716353 1.256364e-05
## 15856 Sandra Erwin           assumptions     9  716353 1.256364e-05
## 15857 Sandra Erwin              asteroid     9  716353 1.256364e-05
## 15858 Sandra Erwin        astrophysicist     9  716353 1.256364e-05
## 15859 Sandra Erwin             attacking     9  716353 1.256364e-05
## 15860 Sandra Erwin                 audit     9  716353 1.256364e-05
## 15861 Sandra Erwin                  ausa     9  716353 1.256364e-05
## 15862 Sandra Erwin                 ayres     9  716353 1.256364e-05
## 15863 Sandra Erwin                 badly     9  716353 1.256364e-05
## 15864 Sandra Erwin                 baron     9  716353 1.256364e-05
## 15865 Sandra Erwin               bassett     9  716353 1.256364e-05
## 15866 Sandra Erwin                  beal     9  716353 1.256364e-05
## 15867 Sandra Erwin                becker     9  716353 1.256364e-05
## 15868 Sandra Erwin                   bed     9  716353 1.256364e-05
## 15869 Sandra Erwin               belgium     9  716353 1.256364e-05
## 15870 Sandra Erwin            benefiting     9  716353 1.256364e-05
## 15871 Sandra Erwin                  bets     9  716353 1.256364e-05
## 15872 Sandra Erwin                 birth     9  716353 1.256364e-05
## 15873 Sandra Erwin                  blew     9  716353 1.256364e-05
## 15874 Sandra Erwin                  boca     9  716353 1.256364e-05
## 15875 Sandra Erwin                bogdan     9  716353 1.256364e-05
## 15876 Sandra Erwin               bogstie     9  716353 1.256364e-05
## 15877 Sandra Erwin                bolger     9  716353 1.256364e-05
## 15878 Sandra Erwin                 brain     9  716353 1.256364e-05
## 15879 Sandra Erwin              brigades     9  716353 1.256364e-05
## 15880 Sandra Erwin                brophy     9  716353 1.256364e-05
## 15881 Sandra Erwin                  buck     9  716353 1.256364e-05
## 15882 Sandra Erwin               burbach     9  716353 1.256364e-05
## 15883 Sandra Erwin              buzzword     9  716353 1.256364e-05
## 15884 Sandra Erwin           calibration     9  716353 1.256364e-05
## 15885 Sandra Erwin             cambridge     9  716353 1.256364e-05
## 15886 Sandra Erwin              campbell     9  716353 1.256364e-05
## 15887 Sandra Erwin                  card     9  716353 1.256364e-05
## 15888 Sandra Erwin               carolyn     9  716353 1.256364e-05
## 15889 Sandra Erwin                  carr     9  716353 1.256364e-05
## 15890 Sandra Erwin                   cas     9  716353 1.256364e-05
## 15891 Sandra Erwin              cautious     9  716353 1.256364e-05
## 15892 Sandra Erwin              celestis     9  716353 1.256364e-05
## 15893 Sandra Erwin              channels     9  716353 1.256364e-05
## 15894 Sandra Erwin        characterizing     9  716353 1.256364e-05
## 15895 Sandra Erwin               chilton     9  716353 1.256364e-05
## 15896 Sandra Erwin               chooses     9  716353 1.256364e-05
## 15897 Sandra Erwin                cities     9  716353 1.256364e-05
## 15898 Sandra Erwin               clarify     9  716353 1.256364e-05
## 15899 Sandra Erwin               classic     9  716353 1.256364e-05
## 15900 Sandra Erwin              classify     9  716353 1.256364e-05
## 15901 Sandra Erwin           classifying     9  716353 1.256364e-05
## 15902 Sandra Erwin             colliding     9  716353 1.256364e-05
## 15903 Sandra Erwin            commanding     9  716353 1.256364e-05
## 15904 Sandra Erwin        commercialized     9  716353 1.256364e-05
## 15905 Sandra Erwin           community’s     9  716353 1.256364e-05
## 15906 Sandra Erwin               compact     9  716353 1.256364e-05
## 15907 Sandra Erwin              competes     9  716353 1.256364e-05
## 15908 Sandra Erwin              complied     9  716353 1.256364e-05
## 15909 Sandra Erwin           compromised     9  716353 1.256364e-05
## 15910 Sandra Erwin           constitutes     9  716353 1.256364e-05
## 15911 Sandra Erwin           consultants     9  716353 1.256364e-05
## 15912 Sandra Erwin          continuation     9  716353 1.256364e-05
## 15913 Sandra Erwin              contrary     9  716353 1.256364e-05
## 15914 Sandra Erwin                   coo     9  716353 1.256364e-05
## 15915 Sandra Erwin           coordinates     9  716353 1.256364e-05
## 15916 Sandra Erwin                cosmic     9  716353 1.256364e-05
## 15917 Sandra Erwin                cotton     9  716353 1.256364e-05
## 15918 Sandra Erwin                 craig     9  716353 1.256364e-05
## 15919 Sandra Erwin              crenshaw     9  716353 1.256364e-05
## 15920 Sandra Erwin              cristina     9  716353 1.256364e-05
## 15921 Sandra Erwin                   csf     9  716353 1.256364e-05
## 15922 Sandra Erwin            culturally     9  716353 1.256364e-05
## 15923 Sandra Erwin                  cusp     9  716353 1.256364e-05
## 15924 Sandra Erwin              database     9  716353 1.256364e-05
## 15925 Sandra Erwin                 dated     9  716353 1.256364e-05
## 15926 Sandra Erwin                  dawn     9  716353 1.256364e-05
## 15927 Sandra Erwin             deadlines     9  716353 1.256364e-05
## 15928 Sandra Erwin      declassification     9  716353 1.256364e-05
## 15929 Sandra Erwin             declining     9  716353 1.256364e-05
## 15930 Sandra Erwin               default     9  716353 1.256364e-05
## 15931 Sandra Erwin              delaying     9  716353 1.256364e-05
## 15932 Sandra Erwin                 desch     9  716353 1.256364e-05
## 15933 Sandra Erwin                  desk     9  716353 1.256364e-05
## 15934 Sandra Erwin                   dim     9  716353 1.256364e-05
## 15935 Sandra Erwin            dimensions     9  716353 1.256364e-05
## 15936 Sandra Erwin                dimmer     9  716353 1.256364e-05
## 15937 Sandra Erwin         disaggregated     9  716353 1.256364e-05
## 15938 Sandra Erwin             disagreed     9  716353 1.256364e-05
## 15939 Sandra Erwin         discretionary     9  716353 1.256364e-05
## 15940 Sandra Erwin        disestablished     9  716353 1.256364e-05
## 15941 Sandra Erwin                dishes     9  716353 1.256364e-05
## 15942 Sandra Erwin            distancing     9  716353 1.256364e-05
## 15943 Sandra Erwin                  diux     9  716353 1.256364e-05
## 15944 Sandra Erwin            documented     9  716353 1.256364e-05
## 15945 Sandra Erwin                 dodge     9  716353 1.256364e-05
## 15946 Sandra Erwin              doubling     9  716353 1.256364e-05
## 15947 Sandra Erwin                  dove     9  716353 1.256364e-05
## 15948 Sandra Erwin                 drove     9  716353 1.256364e-05
## 15949 Sandra Erwin           duplicating     9  716353 1.256364e-05
## 15950 Sandra Erwin                  dust     9  716353 1.256364e-05
## 15951 Sandra Erwin                 dylan     9  716353 1.256364e-05
## 15952 Sandra Erwin              dynetics     9  716353 1.256364e-05
## 15953 Sandra Erwin                  echo     9  716353 1.256364e-05
## 15954 Sandra Erwin             economics     9  716353 1.256364e-05
## 15955 Sandra Erwin               edwards     9  716353 1.256364e-05
## 15956 Sandra Erwin              elevates     9  716353 1.256364e-05
## 15957 Sandra Erwin              emergent     9  716353 1.256364e-05
## 15958 Sandra Erwin               empower     9  716353 1.256364e-05
## 15959 Sandra Erwin            engineered     9  716353 1.256364e-05
## 15960 Sandra Erwin               england     9  716353 1.256364e-05
## 15961 Sandra Erwin              enhances     9  716353 1.256364e-05
## 15962 Sandra Erwin                enlist     9  716353 1.256364e-05
## 15963 Sandra Erwin                 epoch     9  716353 1.256364e-05
## 15964 Sandra Erwin                equips     9  716353 1.256364e-05
## 15965 Sandra Erwin                 erode     9  716353 1.256364e-05
## 15966 Sandra Erwin             excessive     9  716353 1.256364e-05
## 15967 Sandra Erwin            executable     9  716353 1.256364e-05
## 15968 Sandra Erwin           extensively     9  716353 1.256364e-05
## 15969 Sandra Erwin              fairings     9  716353 1.256364e-05
## 15970 Sandra Erwin               fastest     9  716353 1.256364e-05
## 15971 Sandra Erwin              fiercely     9  716353 1.256364e-05
## 15972 Sandra Erwin               fitness     9  716353 1.256364e-05
## 15973 Sandra Erwin               flagged     9  716353 1.256364e-05
## 15974 Sandra Erwin                  food     9  716353 1.256364e-05
## 15975 Sandra Erwin              forceful     9  716353 1.256364e-05
## 15976 Sandra Erwin                format     9  716353 1.256364e-05
## 15977 Sandra Erwin                   fox     9  716353 1.256364e-05
## 15978 Sandra Erwin                  fuse     9  716353 1.256364e-05
## 15979 Sandra Erwin                    g1     9  716353 1.256364e-05
## 15980 Sandra Erwin                 gains     9  716353 1.256364e-05
## 15981 Sandra Erwin             galbreath     9  716353 1.256364e-05
## 15982 Sandra Erwin             garretson     9  716353 1.256364e-05
## 15983 Sandra Erwin              gateways     9  716353 1.256364e-05
## 15984 Sandra Erwin                  gear     9  716353 1.256364e-05
## 15985 Sandra Erwin            generating     9  716353 1.256364e-05
## 15986 Sandra Erwin                  glad     9  716353 1.256364e-05
## 15987 Sandra Erwin                gossel     9  716353 1.256364e-05
## 15988 Sandra Erwin             governing     9  716353 1.256364e-05
## 15989 Sandra Erwin             graduated     9  716353 1.256364e-05
## 15990 Sandra Erwin                 grady     9  716353 1.256364e-05
## 15991 Sandra Erwin               gravity     9  716353 1.256364e-05
## 15992 Sandra Erwin                 grego     9  716353 1.256364e-05
## 15993 Sandra Erwin               guiding     9  716353 1.256364e-05
## 15994 Sandra Erwin               hacking     9  716353 1.256364e-05
## 15995 Sandra Erwin                hadn’t     9  716353 1.256364e-05
## 15996 Sandra Erwin              hallmark     9  716353 1.256364e-05
## 15997 Sandra Erwin              hammered     9  716353 1.256364e-05
## 15998 Sandra Erwin                handed     9  716353 1.256364e-05
## 15999 Sandra Erwin                  hash     9  716353 1.256364e-05
## 16000 Sandra Erwin             headwinds     9  716353 1.256364e-05
## 16001 Sandra Erwin                 hogan     9  716353 1.256364e-05
## 16002 Sandra Erwin               ideally     9  716353 1.256364e-05
## 16003 Sandra Erwin             identical     9  716353 1.256364e-05
## 16004 Sandra Erwin           illustrates     9  716353 1.256364e-05
## 16005 Sandra Erwin               impasse     9  716353 1.256364e-05
## 16006 Sandra Erwin              imposing     9  716353 1.256364e-05
## 16007 Sandra Erwin           impractical     9  716353 1.256364e-05
## 16008 Sandra Erwin            impressive     9  716353 1.256364e-05
## 16009 Sandra Erwin              infantry     9  716353 1.256364e-05
## 16010 Sandra Erwin                inputs     9  716353 1.256364e-05
## 16011 Sandra Erwin            instructed     9  716353 1.256364e-05
## 16012 Sandra Erwin             intending     9  716353 1.256364e-05
## 16013 Sandra Erwin          interoperate     9  716353 1.256364e-05
## 16014 Sandra Erwin             intrigued     9  716353 1.256364e-05
## 16015 Sandra Erwin            intriguing     9  716353 1.256364e-05
## 16016 Sandra Erwin         investigators     9  716353 1.256364e-05
## 16017 Sandra Erwin           involvement     9  716353 1.256364e-05
## 16018 Sandra Erwin                    ip     9  716353 1.256364e-05
## 16019 Sandra Erwin               irocket     9  716353 1.256364e-05
## 16020 Sandra Erwin                  jets     9  716353 1.256364e-05
## 16021 Sandra Erwin                 johns     9  716353 1.256364e-05
## 16022 Sandra Erwin                joshua     9  716353 1.256364e-05
## 16023 Sandra Erwin                   kay     9  716353 1.256364e-05
## 16024 Sandra Erwin                    kc     9  716353 1.256364e-05
## 16025 Sandra Erwin                 keith     9  716353 1.256364e-05
## 16026 Sandra Erwin              kerosene     9  716353 1.256364e-05
## 16027 Sandra Erwin                    kg     9  716353 1.256364e-05
## 16028 Sandra Erwin         knowledgeable     9  716353 1.256364e-05
## 16029 Sandra Erwin                   lal     9  716353 1.256364e-05
## 16030 Sandra Erwin              landings     9  716353 1.256364e-05
## 16031 Sandra Erwin               laudati     9  716353 1.256364e-05
## 16032 Sandra Erwin                  legs     9  716353 1.256364e-05
## 16033 Sandra Erwin              licenses     9  716353 1.256364e-05
## 16034 Sandra Erwin                   lie     9  716353 1.256364e-05
## 16035 Sandra Erwin               lighter     9  716353 1.256364e-05
## 16036 Sandra Erwin             lightfoot     9  716353 1.256364e-05
## 16037 Sandra Erwin              limiting     9  716353 1.256364e-05
## 16038 Sandra Erwin                 loads     9  716353 1.256364e-05
## 16039 Sandra Erwin               lobbied     9  716353 1.256364e-05
## 16040 Sandra Erwin             lobbyists     9  716353 1.256364e-05
## 16041 Sandra Erwin                 logic     9  716353 1.256364e-05
## 16042 Sandra Erwin              lowering     9  716353 1.256364e-05
## 16043 Sandra Erwin                 maine     9  716353 1.256364e-05
## 16044 Sandra Erwin               manchin     9  716353 1.256364e-05
## 16045 Sandra Erwin               matures     9  716353 1.256364e-05
## 16046 Sandra Erwin              maturing     9  716353 1.256364e-05
## 16047 Sandra Erwin              mccarthy     9  716353 1.256364e-05
## 16048 Sandra Erwin                 meink     9  716353 1.256364e-05
## 16049 Sandra Erwin             mentality     9  716353 1.256364e-05
## 16050 Sandra Erwin              merchant     9  716353 1.256364e-05
## 16051 Sandra Erwin               migrate     9  716353 1.256364e-05
## 16052 Sandra Erwin                  mile     9  716353 1.256364e-05
## 16053 Sandra Erwin               mineiro     9  716353 1.256364e-05
## 16054 Sandra Erwin         misconception     9  716353 1.256364e-05
## 16055 Sandra Erwin           mississippi     9  716353 1.256364e-05
## 16056 Sandra Erwin             mitrevski     9  716353 1.256364e-05
## 16057 Sandra Erwin                 modes     9  716353 1.256364e-05
## 16058 Sandra Erwin               modules     9  716353 1.256364e-05
## 16059 Sandra Erwin            monolithic     9  716353 1.256364e-05
## 16060 Sandra Erwin                 motto     9  716353 1.256364e-05
## 16061 Sandra Erwin             multitude     9  716353 1.256364e-05
## 16062 Sandra Erwin                   n.d     9  716353 1.256364e-05
## 16063 Sandra Erwin            nationwide     9  716353 1.256364e-05
## 16064 Sandra Erwin                nato’s     9  716353 1.256364e-05
## 16065 Sandra Erwin                  nick     9  716353 1.256364e-05
## 16066 Sandra Erwin             nighttime     9  716353 1.256364e-05
## 16067 Sandra Erwin             normalize     9  716353 1.256364e-05
## 16068 Sandra Erwin               noticed     9  716353 1.256364e-05
## 16069 Sandra Erwin         notifications     9  716353 1.256364e-05
## 16070 Sandra Erwin                   nss     9  716353 1.256364e-05
## 16071 Sandra Erwin                oceans     9  716353 1.256364e-05
## 16072 Sandra Erwin               offeror     9  716353 1.256364e-05
## 16073 Sandra Erwin                 omaha     9  716353 1.256364e-05
## 16074 Sandra Erwin        operationalize     9  716353 1.256364e-05
## 16075 Sandra Erwin               optimal     9  716353 1.256364e-05
## 16076 Sandra Erwin           orbitsecure     9  716353 1.256364e-05
## 16077 Sandra Erwin              oriented     9  716353 1.256364e-05
## 16078 Sandra Erwin                   otv     9  716353 1.256364e-05
## 16079 Sandra Erwin                  pain     9  716353 1.256364e-05
## 16080 Sandra Erwin              petition     9  716353 1.256364e-05
## 16081 Sandra Erwin                phasor     9  716353 1.256364e-05
## 16082 Sandra Erwin               piemont     9  716353 1.256364e-05
## 16083 Sandra Erwin               piloted     9  716353 1.256364e-05
## 16084 Sandra Erwin              planners     9  716353 1.256364e-05
## 16085 Sandra Erwin               possess     9  716353 1.256364e-05
## 16086 Sandra Erwin               pouring     9  716353 1.256364e-05
## 16087 Sandra Erwin            preserving     9  716353 1.256364e-05
## 16088 Sandra Erwin                priced     9  716353 1.256364e-05
## 16089 Sandra Erwin            prohibited     9  716353 1.256364e-05
## 16090 Sandra Erwin           propellants     9  716353 1.256364e-05
## 16091 Sandra Erwin              protects     9  716353 1.256364e-05
## 16092 Sandra Erwin                purdue     9  716353 1.256364e-05
## 16093 Sandra Erwin            qualifying     9  716353 1.256364e-05
## 16094 Sandra Erwin             realities     9  716353 1.256364e-05
## 16095 Sandra Erwin                  rear     9  716353 1.256364e-05
## 16096 Sandra Erwin             recompete     9  716353 1.256364e-05
## 16097 Sandra Erwin            redesigned     9  716353 1.256364e-05
## 16098 Sandra Erwin               reenter     9  716353 1.256364e-05
## 16099 Sandra Erwin               refused     9  716353 1.256364e-05
## 16100 Sandra Erwin                regain     9  716353 1.256364e-05
## 16101 Sandra Erwin                regret     9  716353 1.256364e-05
## 16102 Sandra Erwin             releasing     9  716353 1.256364e-05
## 16103 Sandra Erwin                remind     9  716353 1.256364e-05
## 16104 Sandra Erwin               repairs     9  716353 1.256364e-05
## 16105 Sandra Erwin        representative     9  716353 1.256364e-05
## 16106 Sandra Erwin        reprogrammable     9  716353 1.256364e-05
## 16107 Sandra Erwin          reprogrammed     9  716353 1.256364e-05
## 16108 Sandra Erwin           repurposing     9  716353 1.256364e-05
## 16109 Sandra Erwin          reservations     9  716353 1.256364e-05
## 16110 Sandra Erwin             resourced     9  716353 1.256364e-05
## 16111 Sandra Erwin            responders     9  716353 1.256364e-05
## 16112 Sandra Erwin           restricting     9  716353 1.256364e-05
## 16113 Sandra Erwin               returns     9  716353 1.256364e-05
## 16114 Sandra Erwin                revise     9  716353 1.256364e-05
## 16115 Sandra Erwin                  rock     9  716353 1.256364e-05
## 16116 Sandra Erwin                 rokaw     9  716353 1.256364e-05
## 16117 Sandra Erwin                   ron     9  716353 1.256364e-05
## 16118 Sandra Erwin                routes     9  716353 1.256364e-05
## 16119 Sandra Erwin                 royce     9  716353 1.256364e-05
## 16120 Sandra Erwin                    rs     9  716353 1.256364e-05
## 16121 Sandra Erwin              rumsfeld     9  716353 1.256364e-05
## 16122 Sandra Erwin                rushed     9  716353 1.256364e-05
## 16123 Sandra Erwin                  scan     9  716353 1.256364e-05
## 16124 Sandra Erwin                scores     9  716353 1.256364e-05
## 16125 Sandra Erwin             seemingly     9  716353 1.256364e-05
## 16126 Sandra Erwin                 ses’s     9  716353 1.256364e-05
## 16127 Sandra Erwin               shaheen     9  716353 1.256364e-05
## 16128 Sandra Erwin               shepard     9  716353 1.256364e-05
## 16129 Sandra Erwin             shortages     9  716353 1.256364e-05
## 16130 Sandra Erwin              shuttles     9  716353 1.256364e-05
## 16131 Sandra Erwin                  shyu     9  716353 1.256364e-05
## 16132 Sandra Erwin                 sided     9  716353 1.256364e-05
## 16133 Sandra Erwin                silent     9  716353 1.256364e-05
## 16134 Sandra Erwin                   sir     9  716353 1.256364e-05
## 16135 Sandra Erwin              slowdown     9  716353 1.256364e-05
## 16136 Sandra Erwin                  spcs     9  716353 1.256364e-05
## 16137 Sandra Erwin             specialty     9  716353 1.256364e-05
## 16138 Sandra Erwin                  ssci     9  716353 1.256364e-05
## 16139 Sandra Erwin                 stack     9  716353 1.256364e-05
## 16140 Sandra Erwin              staffers     9  716353 1.256364e-05
## 16141 Sandra Erwin            staunchest     9  716353 1.256364e-05
## 16142 Sandra Erwin             steerable     9  716353 1.256364e-05
## 16143 Sandra Erwin                 stone     9  716353 1.256364e-05
## 16144 Sandra Erwin              strapped     9  716353 1.256364e-05
## 16145 Sandra Erwin         strategically     9  716353 1.256364e-05
## 16146 Sandra Erwin           strategists     9  716353 1.256364e-05
## 16147 Sandra Erwin              striking     9  716353 1.256364e-05
## 16148 Sandra Erwin             subsidies     9  716353 1.256364e-05
## 16149 Sandra Erwin            subsystems     9  716353 1.256364e-05
## 16150 Sandra Erwin             successor     9  716353 1.256364e-05
## 16151 Sandra Erwin            superpower     9  716353 1.256364e-05
## 16152 Sandra Erwin               surplus     9  716353 1.256364e-05
## 16153 Sandra Erwin          synchronized     9  716353 1.256364e-05
## 16154 Sandra Erwin              system’s     9  716353 1.256364e-05
## 16155 Sandra Erwin                  t2c2     9  716353 1.256364e-05
## 16156 Sandra Erwin                 tacfi     9  716353 1.256364e-05
## 16157 Sandra Erwin                  tags     9  716353 1.256364e-05
## 16158 Sandra Erwin                taiwan     9  716353 1.256364e-05
## 16159 Sandra Erwin               tapping     9  716353 1.256364e-05
## 16160 Sandra Erwin                   ted     9  716353 1.256364e-05
## 16161 Sandra Erwin                   tel     9  716353 1.256364e-05
## 16162 Sandra Erwin           terminating     9  716353 1.256364e-05
## 16163 Sandra Erwin            testifying     9  716353 1.256364e-05
## 16164 Sandra Erwin                thread     9  716353 1.256364e-05
## 16165 Sandra Erwin                 throw     9  716353 1.256364e-05
## 16166 Sandra Erwin                thwart     9  716353 1.256364e-05
## 16167 Sandra Erwin            timeliness     9  716353 1.256364e-05
## 16168 Sandra Erwin                 titan     9  716353 1.256364e-05
## 16169 Sandra Erwin              tolerant     9  716353 1.256364e-05
## 16170 Sandra Erwin                   ton     9  716353 1.256364e-05
## 16171 Sandra Erwin                  tons     9  716353 1.256364e-05
## 16172 Sandra Erwin               totally     9  716353 1.256364e-05
## 16173 Sandra Erwin              tradeoff     9  716353 1.256364e-05
## 16174 Sandra Erwin           transformed     9  716353 1.256364e-05
## 16175 Sandra Erwin                travis     9  716353 1.256364e-05
## 16176 Sandra Erwin              treaties     9  716353 1.256364e-05
## 16177 Sandra Erwin                tricky     9  716353 1.256364e-05
## 16178 Sandra Erwin                triple     9  716353 1.256364e-05
## 16179 Sandra Erwin             troubling     9  716353 1.256364e-05
## 16180 Sandra Erwin                tucson     9  716353 1.256364e-05
## 16181 Sandra Erwin                   tug     9  716353 1.256364e-05
## 16182 Sandra Erwin                 tuned     9  716353 1.256364e-05
## 16183 Sandra Erwin               tyranny     9  716353 1.256364e-05
## 16184 Sandra Erwin               umbra’s     9  716353 1.256364e-05
## 16185 Sandra Erwin            unanswered     9  716353 1.256364e-05
## 16186 Sandra Erwin         uncooperative     9  716353 1.256364e-05
## 16187 Sandra Erwin            undermines     9  716353 1.256364e-05
## 16188 Sandra Erwin               vantage     9  716353 1.256364e-05
## 16189 Sandra Erwin             variables     9  716353 1.256364e-05
## 16190 Sandra Erwin               varying     9  716353 1.256364e-05
## 16191 Sandra Erwin                 vedda     9  716353 1.256364e-05
## 16192 Sandra Erwin                visits     9  716353 1.256364e-05
## 16193 Sandra Erwin                vricon     9  716353 1.256364e-05
## 16194 Sandra Erwin              warheads     9  716353 1.256364e-05
## 16195 Sandra Erwin                warner     9  716353 1.256364e-05
## 16196 Sandra Erwin              weakness     9  716353 1.256364e-05
## 16197 Sandra Erwin                wealth     9  716353 1.256364e-05
## 16198 Sandra Erwin             weaponize     9  716353 1.256364e-05
## 16199 Sandra Erwin                 weber     9  716353 1.256364e-05
## 16200 Sandra Erwin               weekend     9  716353 1.256364e-05
## 16201 Sandra Erwin                 winds     9  716353 1.256364e-05
## 16202 Sandra Erwin                winter     9  716353 1.256364e-05
## 16203 Sandra Erwin             wolfsthal     9  716353 1.256364e-05
## 16204 Sandra Erwin                  wrap     9  716353 1.256364e-05
## 16205 Sandra Erwin             wrestling     9  716353 1.256364e-05
## 16206 Sandra Erwin               writers     9  716353 1.256364e-05
## 16207 Sandra Erwin                   yam     9  716353 1.256364e-05
## 16208 Sandra Erwin                yearly     9  716353 1.256364e-05
## 16209 Sandra Erwin                 you’d     9  716353 1.256364e-05
## 16210   Jeff Foust                  16th     8 1573821 5.083170e-06
## 16211   Jeff Foust                  19th     8 1573821 5.083170e-06
## 16212   Jeff Foust                 231st     8 1573821 5.083170e-06
## 16213   Jeff Foust                  24th     8 1573821 5.083170e-06
## 16214   Jeff Foust                   27m     8 1573821 5.083170e-06
## 16215   Jeff Foust                    2w     8 1573821 5.083170e-06
## 16216   Jeff Foust                  97th     8 1573821 5.083170e-06
## 16217   Jeff Foust         accelerations     8 1573821 5.083170e-06
## 16218   Jeff Foust            activation     8 1573821 5.083170e-06
## 16219   Jeff Foust              adhering     8 1573821 5.083170e-06
## 16220   Jeff Foust               admiral     8 1573821 5.083170e-06
## 16221   Jeff Foust             aeroshell     8 1573821 5.083170e-06
## 16222   Jeff Foust                  ages     8 1573821 5.083170e-06
## 16223   Jeff Foust               agility     8 1573821 5.083170e-06
## 16224   Jeff Foust                  aida     8 1573821 5.083170e-06
## 16225   Jeff Foust                 aided     8 1573821 5.083170e-06
## 16226   Jeff Foust                aiding     8 1573821 5.083170e-06
## 16227   Jeff Foust              aimbetov     8 1573821 5.083170e-06
## 16228   Jeff Foust                  aims     8 1573821 5.083170e-06
## 16229   Jeff Foust                aireon     8 1573821 5.083170e-06
## 16230   Jeff Foust             airport’s     8 1573821 5.083170e-06
## 16231   Jeff Foust                alamos     8 1573821 5.083170e-06
## 16232   Jeff Foust               alegria     8 1573821 5.083170e-06
## 16233   Jeff Foust                 alexa     8 1573821 5.083170e-06
## 16234   Jeff Foust              alleging     8 1573821 5.083170e-06
## 16235   Jeff Foust             allocates     8 1573821 5.083170e-06
## 16236   Jeff Foust                  ally     8 1573821 5.083170e-06
## 16237   Jeff Foust             altimetry     8 1573821 5.083170e-06
## 16238   Jeff Foust                  alto     8 1573821 5.083170e-06
## 16239   Jeff Foust                 ample     8 1573821 5.083170e-06
## 16240   Jeff Foust                   ana     8 1573821 5.083170e-06
## 16241   Jeff Foust             ancillary     8 1573821 5.083170e-06
## 16242   Jeff Foust                   aos     8 1573821 5.083170e-06
## 16243   Jeff Foust               appeals     8 1573821 5.083170e-06
## 16244   Jeff Foust          appropriator     8 1573821 5.083170e-06
## 16245   Jeff Foust               arcadia     8 1573821 5.083170e-06
## 16246   Jeff Foust                 argon     8 1573821 5.083170e-06
## 16247   Jeff Foust                 arm’s     8 1573821 5.083170e-06
## 16248   Jeff Foust                arnold     8 1573821 5.083170e-06
## 16249   Jeff Foust           articulated     8 1573821 5.083170e-06
## 16250   Jeff Foust                   ash     8 1573821 5.083170e-06
## 16251   Jeff Foust            asparouhov     8 1573821 5.083170e-06
## 16252   Jeff Foust            astroforge     8 1573821 5.083170e-06
## 16253   Jeff Foust       astrophysicists     8 1573821 5.083170e-06
## 16254   Jeff Foust             attribute     8 1573821 5.083170e-06
## 16255   Jeff Foust              auckland     8 1573821 5.083170e-06
## 16256   Jeff Foust            augmenting     8 1573821 5.083170e-06
## 16257   Jeff Foust               aviator     8 1573821 5.083170e-06
## 16258   Jeff Foust                  babu     8 1573821 5.083170e-06
## 16259   Jeff Foust                 baked     8 1573821 5.083170e-06
## 16260   Jeff Foust              balances     8 1573821 5.083170e-06
## 16261   Jeff Foust             baselined     8 1573821 5.083170e-06
## 16262   Jeff Foust               beacons     8 1573821 5.083170e-06
## 16263   Jeff Foust                behave     8 1573821 5.083170e-06
## 16264   Jeff Foust                belmer     8 1573821 5.083170e-06
## 16265   Jeff Foust              belonged     8 1573821 5.083170e-06
## 16266   Jeff Foust              bengtson     8 1573821 5.083170e-06
## 16267   Jeff Foust                  bets     8 1573821 5.083170e-06
## 16268   Jeff Foust             biography     8 1573821 5.083170e-06
## 16269   Jeff Foust         biotechnology     8 1573821 5.083170e-06
## 16270   Jeff Foust                  bite     8 1573821 5.083170e-06
## 16271   Jeff Foust             blackerby     8 1573821 5.083170e-06
## 16272   Jeff Foust             blackjack     8 1573821 5.083170e-06
## 16273   Jeff Foust              blasdell     8 1573821 5.083170e-06
## 16274   Jeff Foust              blockage     8 1573821 5.083170e-06
## 16275   Jeff Foust               blowing     8 1573821 5.083170e-06
## 16276   Jeff Foust           bottlenecks     8 1573821 5.083170e-06
## 16277   Jeff Foust                bowman     8 1573821 5.083170e-06
## 16278   Jeff Foust                brains     8 1573821 5.083170e-06
## 16279   Jeff Foust           brainyspace     8 1573821 5.083170e-06
## 16280   Jeff Foust              breakout     8 1573821 5.083170e-06
## 16281   Jeff Foust               breathe     8 1573821 5.083170e-06
## 16282   Jeff Foust            broadcasts     8 1573821 5.083170e-06
## 16283   Jeff Foust                   bug     8 1573821 5.083170e-06
## 16284   Jeff Foust              bursting     8 1573821 5.083170e-06
## 16285   Jeff Foust                bush’s     8 1573821 5.083170e-06
## 16286   Jeff Foust               busiest     8 1573821 5.083170e-06
## 16287   Jeff Foust                 caleb     8 1573821 5.083170e-06
## 16288   Jeff Foust              callahan     8 1573821 5.083170e-06
## 16289   Jeff Foust              campagna     8 1573821 5.083170e-06
## 16290   Jeff Foust           campaigning     8 1573821 5.083170e-06
## 16291   Jeff Foust             canadians     8 1573821 5.083170e-06
## 16292   Jeff Foust           cannibalize     8 1573821 5.083170e-06
## 16293   Jeff Foust                 canoo     8 1573821 5.083170e-06
## 16294   Jeff Foust                cantor     8 1573821 5.083170e-06
## 16295   Jeff Foust             capella’s     8 1573821 5.083170e-06
## 16296   Jeff Foust             cassini’s     8 1573821 5.083170e-06
## 16297   Jeff Foust           categorical     8 1573821 5.083170e-06
## 16298   Jeff Foust           celebration     8 1573821 5.083170e-06
## 16299   Jeff Foust        certifications     8 1573821 5.083170e-06
## 16300   Jeff Foust                cetera     8 1573821 5.083170e-06
## 16301   Jeff Foust              chaplain     8 1573821 5.083170e-06
## 16302   Jeff Foust         characterized     8 1573821 5.083170e-06
## 16303   Jeff Foust           chelyabinsk     8 1573821 5.083170e-06
## 16304   Jeff Foust                 chunk     8 1573821 5.083170e-06
## 16305   Jeff Foust            cincinnati     8 1573821 5.083170e-06
## 16306   Jeff Foust            clearspace     8 1573821 5.083170e-06
## 16307   Jeff Foust                 clive     8 1573821 5.083170e-06
## 16308   Jeff Foust               cloture     8 1573821 5.083170e-06
## 16309   Jeff Foust                coated     8 1573821 5.083170e-06
## 16310   Jeff Foust              coincide     8 1573821 5.083170e-06
## 16311   Jeff Foust                colder     8 1573821 5.083170e-06
## 16312   Jeff Foust            colorado’s     8 1573821 5.083170e-06
## 16313   Jeff Foust              commence     8 1573821 5.083170e-06
## 16314   Jeff Foust             commodity     8 1573821 5.083170e-06
## 16315   Jeff Foust          competencies     8 1573821 5.083170e-06
## 16316   Jeff Foust             competent     8 1573821 5.083170e-06
## 16317   Jeff Foust             comprised     8 1573821 5.083170e-06
## 16318   Jeff Foust         concentrating     8 1573821 5.083170e-06
## 16319   Jeff Foust             concerted     8 1573821 5.083170e-06
## 16320   Jeff Foust          concurrently     8 1573821 5.083170e-06
## 16321   Jeff Foust             condensed     8 1573821 5.083170e-06
## 16322   Jeff Foust            configured     8 1573821 5.083170e-06
## 16323   Jeff Foust            confluence     8 1573821 5.083170e-06
## 16324   Jeff Foust             confusing     8 1573821 5.083170e-06
## 16325   Jeff Foust              congrats     8 1573821 5.083170e-06
## 16326   Jeff Foust           consolation     8 1573821 5.083170e-06
## 16327   Jeff Foust       constellation’s     8 1573821 5.083170e-06
## 16328   Jeff Foust           constituted     8 1573821 5.083170e-06
## 16329   Jeff Foust            consummate     8 1573821 5.083170e-06
## 16330   Jeff Foust              contacts     8 1573821 5.083170e-06
## 16331   Jeff Foust         contaminating     8 1573821 5.083170e-06
## 16332   Jeff Foust           contrasting     8 1573821 5.083170e-06
## 16333   Jeff Foust             convening     8 1573821 5.083170e-06
## 16334   Jeff Foust                  cook     8 1573821 5.083170e-06
## 16335   Jeff Foust                 cooke     8 1573821 5.083170e-06
## 16336   Jeff Foust          cornerstones     8 1573821 5.083170e-06
## 16337   Jeff Foust               counted     8 1573821 5.083170e-06
## 16338   Jeff Foust              courtney     8 1573821 5.083170e-06
## 16339   Jeff Foust                 crist     8 1573821 5.083170e-06
## 16340   Jeff Foust            criticisms     8 1573821 5.083170e-06
## 16341   Jeff Foust                cruz’s     8 1573821 5.083170e-06
## 16342   Jeff Foust                    cu     8 1573821 5.083170e-06
## 16343   Jeff Foust              cummings     8 1573821 5.083170e-06
## 16344   Jeff Foust               cycling     8 1573821 5.083170e-06
## 16345   Jeff Foust                 cyrus     8 1573821 5.083170e-06
## 16346   Jeff Foust                daeman     8 1573821 5.083170e-06
## 16347   Jeff Foust                dallas     8 1573821 5.083170e-06
## 16348   Jeff Foust             darkening     8 1573821 5.083170e-06
## 16349   Jeff Foust              decaying     8 1573821 5.083170e-06
## 16350   Jeff Foust          declassified     8 1573821 5.083170e-06
## 16351   Jeff Foust             decreases     8 1573821 5.083170e-06
## 16352   Jeff Foust             defending     8 1573821 5.083170e-06
## 16353   Jeff Foust          definitively     8 1573821 5.083170e-06
## 16354   Jeff Foust                defund     8 1573821 5.083170e-06
## 16355   Jeff Foust          deliberation     8 1573821 5.083170e-06
## 16356   Jeff Foust             delisting     8 1573821 5.083170e-06
## 16357   Jeff Foust                 deloo     8 1573821 5.083170e-06
## 16358   Jeff Foust                denser     8 1573821 5.083170e-06
## 16359   Jeff Foust               deploys     8 1573821 5.083170e-06
## 16360   Jeff Foust               deprive     8 1573821 5.083170e-06
## 16361   Jeff Foust              deprived     8 1573821 5.083170e-06
## 16362   Jeff Foust                  desk     8 1573821 5.083170e-06
## 16363   Jeff Foust               destiny     8 1573821 5.083170e-06
## 16364   Jeff Foust             dickinson     8 1573821 5.083170e-06
## 16365   Jeff Foust                  diet     8 1573821 5.083170e-06
## 16366   Jeff Foust          differential     8 1573821 5.083170e-06
## 16367   Jeff Foust        digitalglobe’s     8 1573821 5.083170e-06
## 16368   Jeff Foust              diminish     8 1573821 5.083170e-06
## 16369   Jeff Foust                  dina     8 1573821 5.083170e-06
## 16370   Jeff Foust            diplomatic     8 1573821 5.083170e-06
## 16371   Jeff Foust         disagreements     8 1573821 5.083170e-06
## 16372   Jeff Foust           disappeared     8 1573821 5.083170e-06
## 16373   Jeff Foust           disclosures     8 1573821 5.083170e-06
## 16374   Jeff Foust          disconnected     8 1573821 5.083170e-06
## 16375   Jeff Foust            distracted     8 1573821 5.083170e-06
## 16376   Jeff Foust                divert     8 1573821 5.083170e-06
## 16377   Jeff Foust                divide     8 1573821 5.083170e-06
## 16378   Jeff Foust                   dna     8 1573821 5.083170e-06
## 16379   Jeff Foust               donahue     8 1573821 5.083170e-06
## 16380   Jeff Foust              downplay     8 1573821 5.083170e-06
## 16381   Jeff Foust              downtown     8 1573821 5.083170e-06
## 16382   Jeff Foust           drastically     8 1573821 5.083170e-06
## 16383   Jeff Foust                 drees     8 1573821 5.083170e-06
## 16384   Jeff Foust              drelling     8 1573821 5.083170e-06
## 16385   Jeff Foust               eagerly     8 1573821 5.083170e-06
## 16386   Jeff Foust               earning     8 1573821 5.083170e-06
## 16387   Jeff Foust                  eggs     8 1573821 5.083170e-06
## 16388   Jeff Foust          electrospray     8 1573821 5.083170e-06
## 16389   Jeff Foust            elementary     8 1573821 5.083170e-06
## 16390   Jeff Foust             elevating     8 1573821 5.083170e-06
## 16391   Jeff Foust                   ema     8 1573821 5.083170e-06
## 16392   Jeff Foust          embarrassing     8 1573821 5.083170e-06
## 16393   Jeff Foust                 emily     8 1573821 5.083170e-06
## 16394   Jeff Foust             encompass     8 1573821 5.083170e-06
## 16395   Jeff Foust           engagements     8 1573821 5.083170e-06
## 16396   Jeff Foust           enthusiasts     8 1573821 5.083170e-06
## 16397   Jeff Foust               entrant     8 1573821 5.083170e-06
## 16398   Jeff Foust               episode     8 1573821 5.083170e-06
## 16399   Jeff Foust                epscor     8 1573821 5.083170e-06
## 16400   Jeff Foust              equidate     8 1573821 5.083170e-06
## 16401   Jeff Foust             erroneous     8 1573821 5.083170e-06
## 16402   Jeff Foust                   ev5     8 1573821 5.083170e-06
## 16403   Jeff Foust                  evan     8 1573821 5.083170e-06
## 16404   Jeff Foust               evolves     8 1573821 5.083170e-06
## 16405   Jeff Foust              excludes     8 1573821 5.083170e-06
## 16406   Jeff Foust               exploit     8 1573821 5.083170e-06
## 16407   Jeff Foust              eyebrows     8 1573821 5.083170e-06
## 16408   Jeff Foust                    f2     8 1573821 5.083170e-06
## 16409   Jeff Foust          facilitating     8 1573821 5.083170e-06
## 16410   Jeff Foust               faculty     8 1573821 5.083170e-06
## 16411   Jeff Foust               fallout     8 1573821 5.083170e-06
## 16412   Jeff Foust                fattah     8 1573821 5.083170e-06
## 16413   Jeff Foust                   fed     8 1573821 5.083170e-06
## 16414   Jeff Foust              feinberg     8 1573821 5.083170e-06
## 16415   Jeff Foust                 ferri     8 1573821 5.083170e-06
## 16416   Jeff Foust               fifteen     8 1573821 5.083170e-06
## 16417   Jeff Foust                firsts     8 1573821 5.083170e-06
## 16418   Jeff Foust                fitted     8 1573821 5.083170e-06
## 16419   Jeff Foust            fitzgerald     8 1573821 5.083170e-06
## 16420   Jeff Foust               folding     8 1573821 5.083170e-06
## 16421   Jeff Foust                format     8 1573821 5.083170e-06
## 16422   Jeff Foust                forums     8 1573821 5.083170e-06
## 16423   Jeff Foust            fragmented     8 1573821 5.083170e-06
## 16424   Jeff Foust                 fraud     8 1573821 5.083170e-06
## 16425   Jeff Foust               fremont     8 1573821 5.083170e-06
## 16426   Jeff Foust                frozen     8 1573821 5.083170e-06
## 16427   Jeff Foust              garnered     8 1573821 5.083170e-06
## 16428   Jeff Foust                 gavin     8 1573821 5.083170e-06
## 16429   Jeff Foust              geospace     8 1573821 5.083170e-06
## 16430   Jeff Foust              gingrich     8 1573821 5.083170e-06
## 16431   Jeff Foust                goldin     8 1573821 5.083170e-06
## 16432   Jeff Foust              gomspace     8 1573821 5.083170e-06
## 16433   Jeff Foust                govern     8 1573821 5.083170e-06
## 16434   Jeff Foust            grassroots     8 1573821 5.083170e-06
## 16435   Jeff Foust               grübler     8 1573821 5.083170e-06
## 16436   Jeff Foust                 guidi     8 1573821 5.083170e-06
## 16437   Jeff Foust               gullies     8 1573821 5.083170e-06
## 16438   Jeff Foust                   gun     8 1573821 5.083170e-06
## 16439   Jeff Foust                 gusty     8 1573821 5.083170e-06
## 16440   Jeff Foust               hackers     8 1573821 5.083170e-06
## 16441   Jeff Foust                halawi     8 1573821 5.083170e-06
## 16442   Jeff Foust               halpern     8 1573821 5.083170e-06
## 16443   Jeff Foust              hampered     8 1573821 5.083170e-06
## 16444   Jeff Foust               happier     8 1573821 5.083170e-06
## 16445   Jeff Foust                 harsh     8 1573821 5.083170e-06
## 16446   Jeff Foust              hasinger     8 1573821 5.083170e-06
## 16447   Jeff Foust                  haul     8 1573821 5.083170e-06
## 16448   Jeff Foust            hautaluoma     8 1573821 5.083170e-06
## 16449   Jeff Foust              hayabusa     8 1573821 5.083170e-06
## 16450   Jeff Foust             headlines     8 1573821 5.083170e-06
## 16451   Jeff Foust                heated     8 1573821 5.083170e-06
## 16452   Jeff Foust                hedged     8 1573821 5.083170e-06
## 16453   Jeff Foust                 heidi     8 1573821 5.083170e-06
## 16454   Jeff Foust          helicopter’s     8 1573821 5.083170e-06
## 16455   Jeff Foust          heliospheric     8 1573821 5.083170e-06
## 16456   Jeff Foust                hellas     8 1573821 5.083170e-06
## 16457   Jeff Foust                 hines     8 1573821 5.083170e-06
## 16458   Jeff Foust               hinners     8 1573821 5.083170e-06
## 16459   Jeff Foust             honeywell     8 1573821 5.083170e-06
## 16460   Jeff Foust               hoshide     8 1573821 5.083170e-06
## 16461   Jeff Foust               hostile     8 1573821 5.083170e-06
## 16462   Jeff Foust                    hp     8 1573821 5.083170e-06
## 16463   Jeff Foust                   hp3     8 1573821 5.083170e-06
## 16464   Jeff Foust          humanitarian     8 1573821 5.083170e-06
## 16465   Jeff Foust                  ices     8 1573821 5.083170e-06
## 16466   Jeff Foust                 idaho     8 1573821 5.083170e-06
## 16467   Jeff Foust              imagesat     8 1573821 5.083170e-06
## 16468   Jeff Foust           impeachment     8 1573821 5.083170e-06
## 16469   Jeff Foust            impression     8 1573821 5.083170e-06
## 16470   Jeff Foust           incentivize     8 1573821 5.083170e-06
## 16471   Jeff Foust               indiana     8 1573821 5.083170e-06
## 16472   Jeff Foust             indonesia     8 1573821 5.083170e-06
## 16473   Jeff Foust               induced     8 1573821 5.083170e-06
## 16474   Jeff Foust     industrialization     8 1573821 5.083170e-06
## 16475   Jeff Foust            infeasible     8 1573821 5.083170e-06
## 16476   Jeff Foust              infinite     8 1573821 5.083170e-06
## 16477   Jeff Foust            infrequent     8 1573821 5.083170e-06
## 16478   Jeff Foust             ingersoll     8 1573821 5.083170e-06
## 16479   Jeff Foust            initiating     8 1573821 5.083170e-06
## 16480   Jeff Foust           institute’s     8 1573821 5.083170e-06
## 16481   Jeff Foust           interacting     8 1573821 5.083170e-06
## 16482   Jeff Foust              interfax     8 1573821 5.083170e-06
## 16483   Jeff Foust                invent     8 1573821 5.083170e-06
## 16484   Jeff Foust                  isdc     8 1573821 5.083170e-06
## 16485   Jeff Foust              issuance     8 1573821 5.083170e-06
## 16486   Jeff Foust                   ixv     8 1573821 5.083170e-06
## 16487   Jeff Foust                  iyer     8 1573821 5.083170e-06
## 16488   Jeff Foust                  jake     8 1573821 5.083170e-06
## 16489   Jeff Foust               jakosky     8 1573821 5.083170e-06
## 16490   Jeff Foust                jersey     8 1573821 5.083170e-06
## 16491   Jeff Foust                  jett     8 1573821 5.083170e-06
## 16492   Jeff Foust              jettison     8 1573821 5.083170e-06
## 16493   Jeff Foust               johnsen     8 1573821 5.083170e-06
## 16494   Jeff Foust             johnson’s     8 1573821 5.083170e-06
## 16495   Jeff Foust                joints     8 1573821 5.083170e-06
## 16496   Jeff Foust                  joke     8 1573821 5.083170e-06
## 16497   Jeff Foust                judged     8 1573821 5.083170e-06
## 16498   Jeff Foust             judgement     8 1573821 5.083170e-06
## 16499   Jeff Foust              juncture     8 1573821 5.083170e-06
## 16500   Jeff Foust                  junk     8 1573821 5.083170e-06
## 16501   Jeff Foust                 kabot     8 1573821 5.083170e-06
## 16502   Jeff Foust                kazakh     8 1573821 5.083170e-06
## 16503   Jeff Foust                kearns     8 1573821 5.083170e-06
## 16504   Jeff Foust                  keyw     8 1573821 5.083170e-06
## 16505   Jeff Foust                   kfc     8 1573821 5.083170e-06
## 16506   Jeff Foust               kickoff     8 1573821 5.083170e-06
## 16507   Jeff Foust              kimberly     8 1573821 5.083170e-06
## 16508   Jeff Foust                 kitay     8 1573821 5.083170e-06
## 16509   Jeff Foust               knocked     8 1573821 5.083170e-06
## 16510   Jeff Foust                 kraft     8 1573821 5.083170e-06
## 16511   Jeff Foust                krevor     8 1573821 5.083170e-06
## 16512   Jeff Foust               krypton     8 1573821 5.083170e-06
## 16513   Jeff Foust                  ksat     8 1573821 5.083170e-06
## 16514   Jeff Foust               lacquer     8 1573821 5.083170e-06
## 16515   Jeff Foust                 lakes     8 1573821 5.083170e-06
## 16516   Jeff Foust               lanyard     8 1573821 5.083170e-06
## 16517   Jeff Foust               lateral     8 1573821 5.083170e-06
## 16518   Jeff Foust         launcherone’s     8 1573821 5.083170e-06
## 16519   Jeff Foust             lawmakers     8 1573821 5.083170e-06
## 16520   Jeff Foust                   len     8 1573821 5.083170e-06
## 16521   Jeff Foust                 leone     8 1573821 5.083170e-06
## 16522   Jeff Foust                lester     8 1573821 5.083170e-06
## 16523   Jeff Foust                 lgbtq     8 1573821 5.083170e-06
## 16524   Jeff Foust                   lie     8 1573821 5.083170e-06
## 16525   Jeff Foust                  lies     8 1573821 5.083170e-06
## 16526   Jeff Foust              likening     8 1573821 5.083170e-06
## 16527   Jeff Foust               lithium     8 1573821 5.083170e-06
## 16528   Jeff Foust              lockdown     8 1573821 5.083170e-06
## 16529   Jeff Foust                 loved     8 1573821 5.083170e-06
## 16530   Jeff Foust                 lujan     8 1573821 5.083170e-06
## 16531   Jeff Foust                  lull     8 1573821 5.083170e-06
## 16532   Jeff Foust               lunanet     8 1573821 5.083170e-06
## 16533   Jeff Foust                lv0008     8 1573821 5.083170e-06
## 16534   Jeff Foust                lv0009     8 1573821 5.083170e-06
## 16535   Jeff Foust                  lyon     8 1573821 5.083170e-06
## 16536   Jeff Foust             machinski     8 1573821 5.083170e-06
## 16537   Jeff Foust                magner     8 1573821 5.083170e-06
## 16538   Jeff Foust                 maize     8 1573821 5.083170e-06
## 16539   Jeff Foust              mandates     8 1573821 5.083170e-06
## 16540   Jeff Foust              manually     8 1573821 5.083170e-06
## 16541   Jeff Foust               markups     8 1573821 5.083170e-06
## 16542   Jeff Foust               married     8 1573821 5.083170e-06
## 16543   Jeff Foust             masterson     8 1573821 5.083170e-06
## 16544   Jeff Foust               matures     8 1573821 5.083170e-06
## 16545   Jeff Foust                 mayor     8 1573821 5.083170e-06
## 16546   Jeff Foust                   mbz     8 1573821 5.083170e-06
## 16547   Jeff Foust             mccormick     8 1573821 5.083170e-06
## 16548   Jeff Foust             mcfarland     8 1573821 5.083170e-06
## 16549   Jeff Foust                mcpike     8 1573821 5.083170e-06
## 16550   Jeff Foust               metzler     8 1573821 5.083170e-06
## 16551   Jeff Foust               microns     8 1573821 5.083170e-06
## 16552   Jeff Foust            microphone     8 1573821 5.083170e-06
## 16553   Jeff Foust               mindful     8 1573821 5.083170e-06
## 16554   Jeff Foust              minerals     8 1573821 5.083170e-06
## 16555   Jeff Foust                misses     8 1573821 5.083170e-06
## 16556   Jeff Foust                 mit’s     8 1573821 5.083170e-06
## 16557   Jeff Foust             molecules     8 1573821 5.083170e-06
## 16558   Jeff Foust              montreal     8 1573821 5.083170e-06
## 16559   Jeff Foust                morale     8 1573821 5.083170e-06
## 16560   Jeff Foust                moriba     8 1573821 5.083170e-06
## 16561   Jeff Foust           motherboard     8 1573821 5.083170e-06
## 16562   Jeff Foust                mowrer     8 1573821 5.083170e-06
## 16563   Jeff Foust                 mro’s     8 1573821 5.083170e-06
## 16564   Jeff Foust            muilenburg     8 1573821 5.083170e-06
## 16565   Jeff Foust                munich     8 1573821 5.083170e-06
## 16566   Jeff Foust                murphy     8 1573821 5.083170e-06
## 16567   Jeff Foust                  muse     8 1573821 5.083170e-06
## 16568   Jeff Foust             mysteries     8 1573821 5.083170e-06
## 16569   Jeff Foust              narendra     8 1573821 5.083170e-06
## 16570   Jeff Foust             natynczyk     8 1573821 5.083170e-06
## 16571   Jeff Foust                  ncar     8 1573821 5.083170e-06
## 16572   Jeff Foust            negatively     8 1573821 5.083170e-06
## 16573   Jeff Foust                   nep     8 1573821 5.083170e-06
## 16574   Jeff Foust                 nexus     8 1573821 5.083170e-06
## 16575   Jeff Foust                  nfts     8 1573821 5.083170e-06
## 16576   Jeff Foust               night’s     8 1573821 5.083170e-06
## 16577   Jeff Foust                 nodes     8 1573821 5.083170e-06
## 16578   Jeff Foust            november’s     8 1573821 5.083170e-06
## 16579   Jeff Foust              offerors     8 1573821 5.083170e-06
## 16580   Jeff Foust                  offs     8 1573821 5.083170e-06
## 16581   Jeff Foust              omission     8 1573821 5.083170e-06
## 16582   Jeff Foust                 opher     8 1573821 5.083170e-06
## 16583   Jeff Foust               opposes     8 1573821 5.083170e-06
## 16584   Jeff Foust    overpressurization     8 1573821 5.083170e-06
## 16585   Jeff Foust             oversized     8 1573821 5.083170e-06
## 16586   Jeff Foust                  owed     8 1573821 5.083170e-06
## 16587   Jeff Foust                 paced     8 1573821 5.083170e-06
## 16588   Jeff Foust              packages     8 1573821 5.083170e-06
## 16589   Jeff Foust               painful     8 1573821 5.083170e-06
## 16590   Jeff Foust                  palo     8 1573821 5.083170e-06
## 16591   Jeff Foust                   par     8 1573821 5.083170e-06
## 16592   Jeff Foust             parameter     8 1573821 5.083170e-06
## 16593   Jeff Foust                 parks     8 1573821 5.083170e-06
## 16594   Jeff Foust         parliamentary     8 1573821 5.083170e-06
## 16595   Jeff Foust                  paso     8 1573821 5.083170e-06
## 16596   Jeff Foust               pathway     8 1573821 5.083170e-06
## 16597   Jeff Foust              pavilion     8 1573821 5.083170e-06
## 16598   Jeff Foust           penultimate     8 1573821 5.083170e-06
## 16599   Jeff Foust              perceive     8 1573821 5.083170e-06
## 16600   Jeff Foust                  ph.d     8 1573821 5.083170e-06
## 16601   Jeff Foust                philip     8 1573821 5.083170e-06
## 16602   Jeff Foust                pierre     8 1573821 5.083170e-06
## 16603   Jeff Foust              pinkston     8 1573821 5.083170e-06
## 16604   Jeff Foust                 pivot     8 1573821 5.083170e-06
## 16605   Jeff Foust                 plain     8 1573821 5.083170e-06
## 16606   Jeff Foust              planitia     8 1573821 5.083170e-06
## 16607   Jeff Foust                 plato     8 1573821 5.083170e-06
## 16608   Jeff Foust               pleaded     8 1573821 5.083170e-06
## 16609   Jeff Foust           polarimeter     8 1573821 5.083170e-06
## 16610   Jeff Foust            politician     8 1573821 5.083170e-06
## 16611   Jeff Foust                pontes     8 1573821 5.083170e-06
## 16612   Jeff Foust                pooled     8 1573821 5.083170e-06
## 16613   Jeff Foust                poorly     8 1573821 5.083170e-06
## 16614   Jeff Foust                   pop     8 1573821 5.083170e-06
## 16615   Jeff Foust            portuguese     8 1573821 5.083170e-06
## 16616   Jeff Foust             postcards     8 1573821 5.083170e-06
## 16617   Jeff Foust                 pound     8 1573821 5.083170e-06
## 16618   Jeff Foust             pragmatic     8 1573821 5.083170e-06
## 16619   Jeff Foust             preserves     8 1573821 5.083170e-06
## 16620   Jeff Foust           presumptive     8 1573821 5.083170e-06
## 16621   Jeff Foust            prevailing     8 1573821 5.083170e-06
## 16622   Jeff Foust               prichal     8 1573821 5.083170e-06
## 16623   Jeff Foust                prince     8 1573821 5.083170e-06
## 16624   Jeff Foust              pristine     8 1573821 5.083170e-06
## 16625   Jeff Foust            progressed     8 1573821 5.083170e-06
## 16626   Jeff Foust         progressively     8 1573821 5.083170e-06
## 16627   Jeff Foust            protesting     8 1573821 5.083170e-06
## 16628   Jeff Foust              protocol     8 1573821 5.083170e-06
## 16629   Jeff Foust                 quasi     8 1573821 5.083170e-06
## 16630   Jeff Foust                rachel     8 1573821 5.083170e-06
## 16631   Jeff Foust                raffle     8 1573821 5.083170e-06
## 16632   Jeff Foust                 rains     8 1573821 5.083170e-06
## 16633   Jeff Foust                random     8 1573821 5.083170e-06
## 16634   Jeff Foust                   rcm     8 1573821 5.083170e-06
## 16635   Jeff Foust              reassess     8 1573821 5.083170e-06
## 16636   Jeff Foust             reassured     8 1573821 5.083170e-06
## 16637   Jeff Foust                recall     8 1573821 5.083170e-06
## 16638   Jeff Foust           reconfigure     8 1573821 5.083170e-06
## 16639   Jeff Foust             recording     8 1573821 5.083170e-06
## 16640   Jeff Foust                recoup     8 1573821 5.083170e-06
## 16641   Jeff Foust            recruiting     8 1573821 5.083170e-06
## 16642   Jeff Foust            redirected     8 1573821 5.083170e-06
## 16643   Jeff Foust           referencing     8 1573821 5.083170e-06
## 16644   Jeff Foust                refund     8 1573821 5.083170e-06
## 16645   Jeff Foust           reiterating     8 1573821 5.083170e-06
## 16646   Jeff Foust             religious     8 1573821 5.083170e-06
## 16647   Jeff Foust             relocated     8 1573821 5.083170e-06
## 16648   Jeff Foust            remembered     8 1573821 5.083170e-06
## 16649   Jeff Foust              renaming     8 1573821 5.083170e-06
## 16650   Jeff Foust              renovate     8 1573821 5.083170e-06
## 16651   Jeff Foust             renovated     8 1573821 5.083170e-06
## 16652   Jeff Foust          reorganizing     8 1573821 5.083170e-06
## 16653   Jeff Foust               rescind     8 1573821 5.083170e-06
## 16654   Jeff Foust           respondents     8 1573821 5.083170e-06
## 16655   Jeff Foust               resumes     8 1573821 5.083170e-06
## 16656   Jeff Foust           resurrected     8 1573821 5.083170e-06
## 16657   Jeff Foust            rethinking     8 1573821 5.083170e-06
## 16658   Jeff Foust             rewarding     8 1573821 5.083170e-06
## 16659   Jeff Foust                rework     8 1573821 5.083170e-06
## 16660   Jeff Foust                roller     8 1573821 5.083170e-06
## 16661   Jeff Foust                rooted     8 1573821 5.083170e-06
## 16662   Jeff Foust             saccoccia     8 1573821 5.083170e-06
## 16663   Jeff Foust             safeguard     8 1573821 5.083170e-06
## 16664   Jeff Foust            safeguards     8 1573821 5.083170e-06
## 16665   Jeff Foust               saffire     8 1573821 5.083170e-06
## 16666   Jeff Foust               sailing     8 1573821 5.083170e-06
## 16667   Jeff Foust                salman     8 1573821 5.083170e-06
## 16668   Jeff Foust                  scan     8 1573821 5.083170e-06
## 16669   Jeff Foust                  sccs     8 1573821 5.083170e-06
## 16670   Jeff Foust              schaffer     8 1573821 5.083170e-06
## 16671   Jeff Foust            schierholz     8 1573821 5.083170e-06
## 16672   Jeff Foust                scouts     8 1573821 5.083170e-06
## 16673   Jeff Foust                 scrap     8 1573821 5.083170e-06
## 16674   Jeff Foust              seashore     8 1573821 5.083170e-06
## 16675   Jeff Foust              seasonal     8 1573821 5.083170e-06
## 16676   Jeff Foust                  seis     8 1573821 5.083170e-06
## 16677   Jeff Foust         sequestration     8 1573821 5.083170e-06
## 16678   Jeff Foust                sharma     8 1573821 5.083170e-06
## 16679   Jeff Foust                 shaun     8 1573821 5.083170e-06
## 16680   Jeff Foust                sheets     8 1573821 5.083170e-06
## 16681   Jeff Foust              shelby’s     8 1573821 5.083170e-06
## 16682   Jeff Foust                shells     8 1573821 5.083170e-06
## 16683   Jeff Foust                shift4     8 1573821 5.083170e-06
## 16684   Jeff Foust                shiloh     8 1573821 5.083170e-06
## 16685   Jeff Foust             shutdowns     8 1573821 5.083170e-06
## 16686   Jeff Foust             shuttle’s     8 1573821 5.083170e-06
## 16687   Jeff Foust             sidelined     8 1573821 5.083170e-06
## 16688   Jeff Foust                  sigh     8 1573821 5.083170e-06
## 16689   Jeff Foust             signatory     8 1573821 5.083170e-06
## 16690   Jeff Foust                 sigur     8 1573821 5.083170e-06
## 16691   Jeff Foust                silver     8 1573821 5.083170e-06
## 16692   Jeff Foust               sirisha     8 1573821 5.083170e-06
## 16693   Jeff Foust            skripochka     8 1573821 5.083170e-06
## 16694   Jeff Foust                 slack     8 1573821 5.083170e-06
## 16695   Jeff Foust                slazer     8 1573821 5.083170e-06
## 16696   Jeff Foust              sleeping     8 1573821 5.083170e-06
## 16697   Jeff Foust                 smoke     8 1573821 5.083170e-06
## 16698   Jeff Foust              solidify     8 1573821 5.083170e-06
## 16699   Jeff Foust              sorensen     8 1573821 5.083170e-06
## 16700   Jeff Foust           sovereignty     8 1573821 5.083170e-06
## 16701   Jeff Foust             spacedrop     8 1573821 5.083170e-06
## 16702   Jeff Foust              spangelo     8 1573821 5.083170e-06
## 16703   Jeff Foust                spared     8 1573821 5.083170e-06
## 16704   Jeff Foust             specially     8 1573821 5.083170e-06
## 16705   Jeff Foust             speedcast     8 1573821 5.083170e-06
## 16706   Jeff Foust                spikes     8 1573821 5.083170e-06
## 16707   Jeff Foust                  ssme     8 1573821 5.083170e-06
## 16708   Jeff Foust                stance     8 1573821 5.083170e-06
## 16709   Jeff Foust               standby     8 1573821 5.083170e-06
## 16710   Jeff Foust               starzyk     8 1573821 5.083170e-06
## 16711   Jeff Foust         statistically     8 1573821 5.083170e-06
## 16712   Jeff Foust              stepwise     8 1573821 5.083170e-06
## 16713   Jeff Foust                  stig     8 1573821 5.083170e-06
## 16714   Jeff Foust              stirling     8 1573821 5.083170e-06
## 16715   Jeff Foust           strengthens     8 1573821 5.083170e-06
## 16716   Jeff Foust               strides     8 1573821 5.083170e-06
## 16717   Jeff Foust          structurally     8 1573821 5.083170e-06
## 16718   Jeff Foust                stuart     8 1573821 5.083170e-06
## 16719   Jeff Foust             submarine     8 1573821 5.083170e-06
## 16720   Jeff Foust             subsidize     8 1573821 5.083170e-06
## 16721   Jeff Foust              suburban     8 1573821 5.083170e-06
## 16722   Jeff Foust           suppression     8 1573821 5.083170e-06
## 16723   Jeff Foust               surplus     8 1573821 5.083170e-06
## 16724   Jeff Foust             suspected     8 1573821 5.083170e-06
## 16725   Jeff Foust              swapping     8 1573821 5.083170e-06
## 16726   Jeff Foust                  tabs     8 1573821 5.083170e-06
## 16727   Jeff Foust                tahara     8 1573821 5.083170e-06
## 16728   Jeff Foust                taller     8 1573821 5.083170e-06
## 16729   Jeff Foust                tandem     8 1573821 5.083170e-06
## 16730   Jeff Foust                tanner     8 1573821 5.083170e-06
## 16731   Jeff Foust             techedsat     8 1573821 5.083170e-06
## 16732   Jeff Foust           theoretical     8 1573821 5.083170e-06
## 16733   Jeff Foust             thornburg     8 1573821 5.083170e-06
## 16734   Jeff Foust                  tide     8 1573821 5.083170e-06
## 16735   Jeff Foust               tighten     8 1573821 5.083170e-06
## 16736   Jeff Foust            tirelessly     8 1573821 5.083170e-06
## 16737   Jeff Foust               topline     8 1573821 5.083170e-06
## 16738   Jeff Foust               touches     8 1573821 5.083170e-06
## 16739   Jeff Foust               tougher     8 1573821 5.083170e-06
## 16740   Jeff Foust              toughest     8 1573821 5.083170e-06
## 16741   Jeff Foust                traces     8 1573821 5.083170e-06
## 16742   Jeff Foust                tragic     8 1573821 5.083170e-06
## 16743   Jeff Foust           tranquility     8 1573821 5.083170e-06
## 16744   Jeff Foust            translated     8 1573821 5.083170e-06
## 16745   Jeff Foust               trapped     8 1573821 5.083170e-06
## 16746   Jeff Foust              traverse     8 1573821 5.083170e-06
## 16747   Jeff Foust                treats     8 1573821 5.083170e-06
## 16748   Jeff Foust                   trl     8 1573821 5.083170e-06
## 16749   Jeff Foust                 truck     8 1573821 5.083170e-06
## 16750   Jeff Foust                  tune     8 1573821 5.083170e-06
## 16751   Jeff Foust                 tuohy     8 1573821 5.083170e-06
## 16752   Jeff Foust            turbulence     8 1573821 5.083170e-06
## 16753   Jeff Foust               turnock     8 1573821 5.083170e-06
## 16754   Jeff Foust                 tying     8 1573821 5.083170e-06
## 16755   Jeff Foust                  uber     8 1573821 5.083170e-06
## 16756   Jeff Foust              umbrella     8 1573821 5.083170e-06
## 16757   Jeff Foust         unanticipated     8 1573821 5.083170e-06
## 16758   Jeff Foust        unconventional     8 1573821 5.083170e-06
## 16759   Jeff Foust           underfunded     8 1573821 5.083170e-06
## 16760   Jeff Foust             undergone     8 1573821 5.083170e-06
## 16761   Jeff Foust               unified     8 1573821 5.083170e-06
## 16762   Jeff Foust            unilateral     8 1573821 5.083170e-06
## 16763   Jeff Foust            unintended     8 1573821 5.083170e-06
## 16764   Jeff Foust            unresolved     8 1573821 5.083170e-06
## 16765   Jeff Foust                uphill     8 1573821 5.083170e-06
## 16766   Jeff Foust                  usaf     8 1573821 5.083170e-06
## 16767   Jeff Foust                  uscv     8 1573821 5.083170e-06
## 16768   Jeff Foust              uthmeier     8 1573821 5.083170e-06
## 16769   Jeff Foust               valuing     8 1573821 5.083170e-06
## 16770   Jeff Foust             vancouver     8 1573821 5.083170e-06
## 16771   Jeff Foust               vanotti     8 1573821 5.083170e-06
## 16772   Jeff Foust           variability     8 1573821 5.083170e-06
## 16773   Jeff Foust             variation     8 1573821 5.083170e-06
## 16774   Jeff Foust                varied     8 1573821 5.083170e-06
## 16775   Jeff Foust                varies     8 1573821 5.083170e-06
## 16776   Jeff Foust                vast’s     8 1573821 5.083170e-06
## 16777   Jeff Foust                  vent     8 1573821 5.083170e-06
## 16778   Jeff Foust               venturi     8 1573821 5.083170e-06
## 16779   Jeff Foust                 versa     8 1573821 5.083170e-06
## 16780   Jeff Foust                victim     8 1573821 5.083170e-06
## 16781   Jeff Foust                voices     8 1573821 5.083170e-06
## 16782   Jeff Foust              voronezh     8 1573821 5.083170e-06
## 16783   Jeff Foust                voters     8 1573821 5.083170e-06
## 16784   Jeff Foust                    vt     8 1573821 5.083170e-06
## 16785   Jeff Foust       vulnerabilities     8 1573821 5.083170e-06
## 16786   Jeff Foust             warehouse     8 1573821 5.083170e-06
## 16787   Jeff Foust             wayfinder     8 1573821 5.083170e-06
## 16788   Jeff Foust                 wedge     8 1573821 5.083170e-06
## 16789   Jeff Foust                 weiss     8 1573821 5.083170e-06
## 16790   Jeff Foust              welcomes     8 1573821 5.083170e-06
## 16791   Jeff Foust               winding     8 1573821 5.083170e-06
## 16792   Jeff Foust                 winne     8 1573821 5.083170e-06
## 16793   Jeff Foust               wooster     8 1573821 5.083170e-06
## 16794   Jeff Foust                 wyche     8 1573821 5.083170e-06
## 16795   Jeff Foust              yamakawa     8 1573821 5.083170e-06
## 16796   Jeff Foust                 yaney     8 1573821 5.083170e-06
## 16797   Jeff Foust                    yu     8 1573821 5.083170e-06
## 16798 Sandra Erwin                 1950s     8  716353 1.116768e-05
## 16799 Sandra Erwin                 2000s     8  716353 1.116768e-05
## 16800 Sandra Erwin                  34th     8  716353 1.116768e-05
## 16801 Sandra Erwin                 460th     8  716353 1.116768e-05
## 16802 Sandra Erwin                    4s     8  716353 1.116768e-05
## 16803 Sandra Erwin                    6u     8  716353 1.116768e-05
## 16804 Sandra Erwin                  702x     8  716353 1.116768e-05
## 16805 Sandra Erwin          accidentally     8  716353 1.116768e-05
## 16806 Sandra Erwin         accomplishing     8  716353 1.116768e-05
## 16807 Sandra Erwin             accounted     8  716353 1.116768e-05
## 16808 Sandra Erwin            accustomed     8  716353 1.116768e-05
## 16809 Sandra Erwin            adjustment     8  716353 1.116768e-05
## 16810 Sandra Erwin          aeronautical     8  716353 1.116768e-05
## 16811 Sandra Erwin          afterthought     8  716353 1.116768e-05
## 16812 Sandra Erwin             aggregate     8  716353 1.116768e-05
## 16813 Sandra Erwin                airman     8  716353 1.116768e-05
## 16814 Sandra Erwin                 aisle     8  716353 1.116768e-05
## 16815 Sandra Erwin                  ajit     8  716353 1.116768e-05
## 16816 Sandra Erwin              alerting     8  716353 1.116768e-05
## 16817 Sandra Erwin                aligns     8  716353 1.116768e-05
## 16818 Sandra Erwin             all.space     8  716353 1.116768e-05
## 16819 Sandra Erwin               amended     8  716353 1.116768e-05
## 16820 Sandra Erwin                 angus     8  716353 1.116768e-05
## 16821 Sandra Erwin                apiece     8  716353 1.116768e-05
## 16822 Sandra Erwin               appoint     8  716353 1.116768e-05
## 16823 Sandra Erwin         arianespace’s     8  716353 1.116768e-05
## 16824 Sandra Erwin                  asbm     8  716353 1.116768e-05
## 16825 Sandra Erwin                   asc     8  716353 1.116768e-05
## 16826 Sandra Erwin          astrobotic’s     8  716353 1.116768e-05
## 16827 Sandra Erwin                atomic     8  716353 1.116768e-05
## 16828 Sandra Erwin              attorney     8  716353 1.116768e-05
## 16829 Sandra Erwin           attribution     8  716353 1.116768e-05
## 16830 Sandra Erwin             attrition     8  716353 1.116768e-05
## 16831 Sandra Erwin           authorizing     8  716353 1.116768e-05
## 16832 Sandra Erwin                 avila     8  716353 1.116768e-05
## 16833 Sandra Erwin                 bakos     8  716353 1.116768e-05
## 16834 Sandra Erwin              balances     8  716353 1.116768e-05
## 16835 Sandra Erwin                  bans     8  716353 1.116768e-05
## 16836 Sandra Erwin            battlestar     8  716353 1.116768e-05
## 16837 Sandra Erwin                 beard     8  716353 1.116768e-05
## 16838 Sandra Erwin                  beef     8  716353 1.116768e-05
## 16839 Sandra Erwin                beidou     8  716353 1.116768e-05
## 16840 Sandra Erwin              belonged     8  716353 1.116768e-05
## 16841 Sandra Erwin      biomanufacturing     8  716353 1.116768e-05
## 16842 Sandra Erwin                 blank     8  716353 1.116768e-05
## 16843 Sandra Erwin            blindsided     8  716353 1.116768e-05
## 16844 Sandra Erwin                 bombs     8  716353 1.116768e-05
## 16845 Sandra Erwin                 bowed     8  716353 1.116768e-05
## 16846 Sandra Erwin               breadth     8  716353 1.116768e-05
## 16847 Sandra Erwin             breathing     8  716353 1.116768e-05
## 16848 Sandra Erwin             brigadier     8  716353 1.116768e-05
## 16849 Sandra Erwin                bright     8  716353 1.116768e-05
## 16850 Sandra Erwin               britain     8  716353 1.116768e-05
## 16851 Sandra Erwin               brodeur     8  716353 1.116768e-05
## 16852 Sandra Erwin                 bucci     8  716353 1.116768e-05
## 16853 Sandra Erwin                  c600     8  716353 1.116768e-05
## 16854 Sandra Erwin             canceling     8  716353 1.116768e-05
## 16855 Sandra Erwin          cancellation     8  716353 1.116768e-05
## 16856 Sandra Erwin           capitalists     8  716353 1.116768e-05
## 16857 Sandra Erwin              captures     8  716353 1.116768e-05
## 16858 Sandra Erwin            cellphones     8  716353 1.116768e-05
## 16859 Sandra Erwin              centered     8  716353 1.116768e-05
## 16860 Sandra Erwin                  chad     8  716353 1.116768e-05
## 16861 Sandra Erwin               channel     8  716353 1.116768e-05
## 16862 Sandra Erwin             christian     8  716353 1.116768e-05
## 16863 Sandra Erwin                   cia     8  716353 1.116768e-05
## 16864 Sandra Erwin                citing     8  716353 1.116768e-05
## 16865 Sandra Erwin             clearance     8  716353 1.116768e-05
## 16866 Sandra Erwin               coleman     8  716353 1.116768e-05
## 16867 Sandra Erwin         collaborating     8  716353 1.116768e-05
## 16868 Sandra Erwin                 color     8  716353 1.116768e-05
## 16869 Sandra Erwin              columbia     8  716353 1.116768e-05
## 16870 Sandra Erwin            commandant     8  716353 1.116768e-05
## 16871 Sandra Erwin          commissioner     8  716353 1.116768e-05
## 16872 Sandra Erwin         commissioners     8  716353 1.116768e-05
## 16873 Sandra Erwin           commonality     8  716353 1.116768e-05
## 16874 Sandra Erwin            compensate     8  716353 1.116768e-05
## 16875 Sandra Erwin             compliant     8  716353 1.116768e-05
## 16876 Sandra Erwin            complicate     8  716353 1.116768e-05
## 16877 Sandra Erwin            compressed     8  716353 1.116768e-05
## 16878 Sandra Erwin          concentrated     8  716353 1.116768e-05
## 16879 Sandra Erwin             concerted     8  716353 1.116768e-05
## 16880 Sandra Erwin                  cone     8  716353 1.116768e-05
## 16881 Sandra Erwin        configurations     8  716353 1.116768e-05
## 16882 Sandra Erwin              confront     8  716353 1.116768e-05
## 16883 Sandra Erwin         consequential     8  716353 1.116768e-05
## 16884 Sandra Erwin           consortiums     8  716353 1.116768e-05
## 16885 Sandra Erwin              consumed     8  716353 1.116768e-05
## 16886 Sandra Erwin           consumption     8  716353 1.116768e-05
## 16887 Sandra Erwin             contender     8  716353 1.116768e-05
## 16888 Sandra Erwin           controlling     8  716353 1.116768e-05
## 16889 Sandra Erwin                 cores     8  716353 1.116768e-05
## 16890 Sandra Erwin             correctly     8  716353 1.116768e-05
## 16891 Sandra Erwin       countermeasures     8  716353 1.116768e-05
## 16892 Sandra Erwin                county     8  716353 1.116768e-05
## 16893 Sandra Erwin                  crop     8  716353 1.116768e-05
## 16894 Sandra Erwin             crosslink     8  716353 1.116768e-05
## 16895 Sandra Erwin                  cssc     8  716353 1.116768e-05
## 16896 Sandra Erwin                  ctio     8  716353 1.116768e-05
## 16897 Sandra Erwin             customary     8  716353 1.116768e-05
## 16898 Sandra Erwin                 czech     8  716353 1.116768e-05
## 16899 Sandra Erwin              dankberg     8  716353 1.116768e-05
## 16900 Sandra Erwin                dawson     8  716353 1.116768e-05
## 16901 Sandra Erwin              deciding     8  716353 1.116768e-05
## 16902 Sandra Erwin        decommissioned     8  716353 1.116768e-05
## 16903 Sandra Erwin              decrease     8  716353 1.116768e-05
## 16904 Sandra Erwin                deemed     8  716353 1.116768e-05
## 16905 Sandra Erwin              defeated     8  716353 1.116768e-05
## 16906 Sandra Erwin               deficit     8  716353 1.116768e-05
## 16907 Sandra Erwin            definitive     8  716353 1.116768e-05
## 16908 Sandra Erwin             delegated     8  716353 1.116768e-05
## 16909 Sandra Erwin              deloitte     8  716353 1.116768e-05
## 16910 Sandra Erwin              derailed     8  716353 1.116768e-05
## 16911 Sandra Erwin                desert     8  716353 1.116768e-05
## 16912 Sandra Erwin            determines     8  716353 1.116768e-05
## 16913 Sandra Erwin                 devil     8  716353 1.116768e-05
## 16914 Sandra Erwin               dipippa     8  716353 1.116768e-05
## 16915 Sandra Erwin            directives     8  716353 1.116768e-05
## 16916 Sandra Erwin          directorates     8  716353 1.116768e-05
## 16917 Sandra Erwin          disagreement     8  716353 1.116768e-05
## 16918 Sandra Erwin                disa’s     8  716353 1.116768e-05
## 16919 Sandra Erwin            dismounted     8  716353 1.116768e-05
## 16920 Sandra Erwin            disturbing     8  716353 1.116768e-05
## 16921 Sandra Erwin              divisive     8  716353 1.116768e-05
## 16922 Sandra Erwin                   don     8  716353 1.116768e-05
## 16923 Sandra Erwin                   dot     8  716353 1.116768e-05
## 16924 Sandra Erwin                  drug     8  716353 1.116768e-05
## 16925 Sandra Erwin              earliest     8  716353 1.116768e-05
## 16926 Sandra Erwin                earned     8  716353 1.116768e-05
## 16927 Sandra Erwin                  ears     8  716353 1.116768e-05
## 16928 Sandra Erwin          economically     8  716353 1.116768e-05
## 16929 Sandra Erwin             editorial     8  716353 1.116768e-05
## 16930 Sandra Erwin             educating     8  716353 1.116768e-05
## 16931 Sandra Erwin                  emit     8  716353 1.116768e-05
## 16932 Sandra Erwin                enacts     8  716353 1.116768e-05
## 16933 Sandra Erwin              endanger     8  716353 1.116768e-05
## 16934 Sandra Erwin              enduring     8  716353 1.116768e-05
## 16935 Sandra Erwin              energize     8  716353 1.116768e-05
## 16936 Sandra Erwin               enjoyed     8  716353 1.116768e-05
## 16937 Sandra Erwin               equally     8  716353 1.116768e-05
## 16938 Sandra Erwin                 estep     8  716353 1.116768e-05
## 16939 Sandra Erwin                    eu     8  716353 1.116768e-05
## 16940 Sandra Erwin              eutelsat     8  716353 1.116768e-05
## 16941 Sandra Erwin            everyone’s     8  716353 1.116768e-05
## 16942 Sandra Erwin             examining     8  716353 1.116768e-05
## 16943 Sandra Erwin          experiencing     8  716353 1.116768e-05
## 16944 Sandra Erwin                expire     8  716353 1.116768e-05
## 16945 Sandra Erwin           exponential     8  716353 1.116768e-05
## 16946 Sandra Erwin             expresses     8  716353 1.116768e-05
## 16947 Sandra Erwin            extensions     8  716353 1.116768e-05
## 16948 Sandra Erwin                  fa40     8  716353 1.116768e-05
## 16949 Sandra Erwin                faring     8  716353 1.116768e-05
## 16950 Sandra Erwin              favoring     8  716353 1.116768e-05
## 16951 Sandra Erwin           feasibility     8  716353 1.116768e-05
## 16952 Sandra Erwin              feasible     8  716353 1.116768e-05
## 16953 Sandra Erwin                  fees     8  716353 1.116768e-05
## 16954 Sandra Erwin             finalists     8  716353 1.116768e-05
## 16955 Sandra Erwin             finishing     8  716353 1.116768e-05
## 16956 Sandra Erwin                 flags     8  716353 1.116768e-05
## 16957 Sandra Erwin               flatter     8  716353 1.116768e-05
## 16958 Sandra Erwin          foundation’s     8  716353 1.116768e-05
## 16959 Sandra Erwin                freely     8  716353 1.116768e-05
## 16960 Sandra Erwin            fulfilling     8  716353 1.116768e-05
## 16961 Sandra Erwin           fundraising     8  716353 1.116768e-05
## 16962 Sandra Erwin                galaxy     8  716353 1.116768e-05
## 16963 Sandra Erwin                 galer     8  716353 1.116768e-05
## 16964 Sandra Erwin             garrisons     8  716353 1.116768e-05
## 16965 Sandra Erwin              gathmann     8  716353 1.116768e-05
## 16966 Sandra Erwin               gearing     8  716353 1.116768e-05
## 16967 Sandra Erwin                   ges     8  716353 1.116768e-05
## 16968 Sandra Erwin                  girl     8  716353 1.116768e-05
## 16969 Sandra Erwin                 gmlrs     8  716353 1.116768e-05
## 16970 Sandra Erwin              goldberg     8  716353 1.116768e-05
## 16971 Sandra Erwin             greenberg     8  716353 1.116768e-05
## 16972 Sandra Erwin               grignon     8  716353 1.116768e-05
## 16973 Sandra Erwin            guarantees     8  716353 1.116768e-05
## 16974 Sandra Erwin                harm’s     8  716353 1.116768e-05
## 16975 Sandra Erwin                 harsh     8  716353 1.116768e-05
## 16976 Sandra Erwin                  hawk     8  716353 1.116768e-05
## 16977 Sandra Erwin                 hawks     8  716353 1.116768e-05
## 16978 Sandra Erwin             hazardous     8  716353 1.116768e-05
## 16979 Sandra Erwin               heavier     8  716353 1.116768e-05
## 16980 Sandra Erwin            heightened     8  716353 1.116768e-05
## 16981 Sandra Erwin                   heo     8  716353 1.116768e-05
## 16982 Sandra Erwin                  hera     8  716353 1.116768e-05
## 16983 Sandra Erwin                hewson     8  716353 1.116768e-05
## 16984 Sandra Erwin              honestly     8  716353 1.116768e-05
## 16985 Sandra Erwin                 hurry     8  716353 1.116768e-05
## 16986 Sandra Erwin             hydrazine     8  716353 1.116768e-05
## 16987 Sandra Erwin           imagination     8  716353 1.116768e-05
## 16988 Sandra Erwin              immature     8  716353 1.116768e-05
## 16989 Sandra Erwin              imminent     8  716353 1.116768e-05
## 16990 Sandra Erwin             impacting     8  716353 1.116768e-05
## 16991 Sandra Erwin              improves     8  716353 1.116768e-05
## 16992 Sandra Erwin          incentivized     8  716353 1.116768e-05
## 16993 Sandra Erwin             incubator     8  716353 1.116768e-05
## 16994 Sandra Erwin            indicators     8  716353 1.116768e-05
## 16995 Sandra Erwin          individually     8  716353 1.116768e-05
## 16996 Sandra Erwin                 inked     8  716353 1.116768e-05
## 16997 Sandra Erwin           interfering     8  716353 1.116768e-05
## 16998 Sandra Erwin        interplanetary     8  716353 1.116768e-05
## 16999 Sandra Erwin        intersatellite     8  716353 1.116768e-05
## 17000 Sandra Erwin           interviewed     8  716353 1.116768e-05
## 17001 Sandra Erwin            intrusions     8  716353 1.116768e-05
## 17002 Sandra Erwin               invaded     8  716353 1.116768e-05
## 17003 Sandra Erwin          investigated     8  716353 1.116768e-05
## 17004 Sandra Erwin                iphone     8  716353 1.116768e-05
## 17005 Sandra Erwin              jamieson     8  716353 1.116768e-05
## 17006 Sandra Erwin                jensen     8  716353 1.116768e-05
## 17007 Sandra Erwin                 jfscc     8  716353 1.116768e-05
## 17008 Sandra Erwin                 jokes     8  716353 1.116768e-05
## 17009 Sandra Erwin                  josh     8  716353 1.116768e-05
## 17010 Sandra Erwin                 kathy     8  716353 1.116768e-05
## 17011 Sandra Erwin             kennedy’s     8  716353 1.116768e-05
## 17012 Sandra Erwin               kicking     8  716353 1.116768e-05
## 17013 Sandra Erwin                  korb     8  716353 1.116768e-05
## 17014 Sandra Erwin              kratsios     8  716353 1.116768e-05
## 17015 Sandra Erwin                 latin     8  716353 1.116768e-05
## 17016 Sandra Erwin             latitudes     8  716353 1.116768e-05
## 17017 Sandra Erwin               leaning     8  716353 1.116768e-05
## 17018 Sandra Erwin               legally     8  716353 1.116768e-05
## 17019 Sandra Erwin                lethal     8  716353 1.116768e-05
## 17020 Sandra Erwin                 lidar     8  716353 1.116768e-05
## 17021 Sandra Erwin           lieutenants     8  716353 1.116768e-05
## 17022 Sandra Erwin             lifecycle     8  716353 1.116768e-05
## 17023 Sandra Erwin             lightning     8  716353 1.116768e-05
## 17024 Sandra Erwin                 lincs     8  716353 1.116768e-05
## 17025 Sandra Erwin                loaded     8  716353 1.116768e-05
## 17026 Sandra Erwin             macdonald     8  716353 1.116768e-05
## 17027 Sandra Erwin                 magic     8  716353 1.116768e-05
## 17028 Sandra Erwin              mandates     8  716353 1.116768e-05
## 17029 Sandra Erwin                 marco     8  716353 1.116768e-05
## 17030 Sandra Erwin               mcquade     8  716353 1.116768e-05
## 17031 Sandra Erwin              measured     8  716353 1.116768e-05
## 17032 Sandra Erwin                 mello     8  716353 1.116768e-05
## 17033 Sandra Erwin             mentoring     8  716353 1.116768e-05
## 17034 Sandra Erwin                  mevs     8  716353 1.116768e-05
## 17035 Sandra Erwin               mindful     8  716353 1.116768e-05
## 17036 Sandra Erwin             miniature     8  716353 1.116768e-05
## 17037 Sandra Erwin        miscalculation     8  716353 1.116768e-05
## 17038 Sandra Erwin             monitored     8  716353 1.116768e-05
## 17039 Sandra Erwin              moonshot     8  716353 1.116768e-05
## 17040 Sandra Erwin               moulton     8  716353 1.116768e-05
## 17041 Sandra Erwin                murphy     8  716353 1.116768e-05
## 17042 Sandra Erwin                  nagy     8  716353 1.116768e-05
## 17043 Sandra Erwin             narrowing     8  716353 1.116768e-05
## 17044 Sandra Erwin                nearby     8  716353 1.116768e-05
## 17045 Sandra Erwin                   nec     8  716353 1.116768e-05
## 17046 Sandra Erwin                  nsla     8  716353 1.116768e-05
## 17047 Sandra Erwin                  oadr     8  716353 1.116768e-05
## 17048 Sandra Erwin                  offs     8  716353 1.116768e-05
## 17049 Sandra Erwin              opinions     8  716353 1.116768e-05
## 17050 Sandra Erwin                orbion     8  716353 1.116768e-05
## 17051 Sandra Erwin             outpacing     8  716353 1.116768e-05
## 17052 Sandra Erwin              packages     8  716353 1.116768e-05
## 17053 Sandra Erwin                 pairs     8  716353 1.116768e-05
## 17054 Sandra Erwin                  palm     8  716353 1.116768e-05
## 17055 Sandra Erwin                   par     8  716353 1.116768e-05
## 17056 Sandra Erwin            passionate     8  716353 1.116768e-05
## 17057 Sandra Erwin              patricia     8  716353 1.116768e-05
## 17058 Sandra Erwin               payment     8  716353 1.116768e-05
## 17059 Sandra Erwin                payoff     8  716353 1.116768e-05
## 17060 Sandra Erwin                 peers     8  716353 1.116768e-05
## 17061 Sandra Erwin             peregrine     8  716353 1.116768e-05
## 17062 Sandra Erwin              periodic     8  716353 1.116768e-05
## 17063 Sandra Erwin               periods     8  716353 1.116768e-05
## 17064 Sandra Erwin          perspectives     8  716353 1.116768e-05
## 17065 Sandra Erwin            philosophy     8  716353 1.116768e-05
## 17066 Sandra Erwin                phones     8  716353 1.116768e-05
## 17067 Sandra Erwin                phrase     8  716353 1.116768e-05
## 17068 Sandra Erwin                   pod     8  716353 1.116768e-05
## 17069 Sandra Erwin                  poet     8  716353 1.116768e-05
## 17070 Sandra Erwin                poland     8  716353 1.116768e-05
## 17071 Sandra Erwin           politicized     8  716353 1.116768e-05
## 17072 Sandra Erwin              postured     8  716353 1.116768e-05
## 17073 Sandra Erwin                   pot     8  716353 1.116768e-05
## 17074 Sandra Erwin                powell     8  716353 1.116768e-05
## 17075 Sandra Erwin              precourt     8  716353 1.116768e-05
## 17076 Sandra Erwin           predecessor     8  716353 1.116768e-05
## 17077 Sandra Erwin           predictions     8  716353 1.116768e-05
## 17078 Sandra Erwin             prevented     8  716353 1.116768e-05
## 17079 Sandra Erwin             proactive     8  716353 1.116768e-05
## 17080 Sandra Erwin          programmatic     8  716353 1.116768e-05
## 17081 Sandra Erwin               prudent     8  716353 1.116768e-05
## 17082 Sandra Erwin                 quasi     8  716353 1.116768e-05
## 17083 Sandra Erwin          questionable     8  716353 1.116768e-05
## 17084 Sandra Erwin             radically     8  716353 1.116768e-05
## 17085 Sandra Erwin                  rali     8  716353 1.116768e-05
## 17086 Sandra Erwin               rebecca     8  716353 1.116768e-05
## 17087 Sandra Erwin            recovering     8  716353 1.116768e-05
## 17088 Sandra Erwin             redwire’s     8  716353 1.116768e-05
## 17089 Sandra Erwin          refrigerator     8  716353 1.116768e-05
## 17090 Sandra Erwin                reopen     8  716353 1.116768e-05
## 17091 Sandra Erwin                repeal     8  716353 1.116768e-05
## 17092 Sandra Erwin           rescheduled     8  716353 1.116768e-05
## 17093 Sandra Erwin            reservists     8  716353 1.116768e-05
## 17094 Sandra Erwin           resolutions     8  716353 1.116768e-05
## 17095 Sandra Erwin           restructure     8  716353 1.116768e-05
## 17096 Sandra Erwin               reveals     8  716353 1.116768e-05
## 17097 Sandra Erwin                robbie     8  716353 1.116768e-05
## 17098 Sandra Erwin                   rpo     8  716353 1.116768e-05
## 17099 Sandra Erwin                 rusty     8  716353 1.116768e-05
## 17100 Sandra Erwin               sam.gov     8  716353 1.116768e-05
## 17101 Sandra Erwin                samuel     8  716353 1.116768e-05
## 17102 Sandra Erwin                 santa     8  716353 1.116768e-05
## 17103 Sandra Erwin                 sarah     8  716353 1.116768e-05
## 17104 Sandra Erwin                 saved     8  716353 1.116768e-05
## 17105 Sandra Erwin                 schum     8  716353 1.116768e-05
## 17106 Sandra Erwin                scored     8  716353 1.116768e-05
## 17107 Sandra Erwin                screen     8  716353 1.116768e-05
## 17108 Sandra Erwin              severely     8  716353 1.116768e-05
## 17109 Sandra Erwin               sharper     8  716353 1.116768e-05
## 17110 Sandra Erwin               shatner     8  716353 1.116768e-05
## 17111 Sandra Erwin              shutting     8  716353 1.116768e-05
## 17112 Sandra Erwin                  simi     8  716353 1.116768e-05
## 17113 Sandra Erwin          simultaneous     8  716353 1.116768e-05
## 17114 Sandra Erwin               sizable     8  716353 1.116768e-05
## 17115 Sandra Erwin              skeptics     8  716353 1.116768e-05
## 17116 Sandra Erwin                 slate     8  716353 1.116768e-05
## 17117 Sandra Erwin                  slot     8  716353 1.116768e-05
## 17118 Sandra Erwin                 slows     8  716353 1.116768e-05
## 17119 Sandra Erwin              sluggish     8  716353 1.116768e-05
## 17120 Sandra Erwin                soared     8  716353 1.116768e-05
## 17121 Sandra Erwin               solving     8  716353 1.116768e-05
## 17122 Sandra Erwin               sparked     8  716353 1.116768e-05
## 17123 Sandra Erwin                  spoc     8  716353 1.116768e-05
## 17124 Sandra Erwin               stanley     8  716353 1.116768e-05
## 17125 Sandra Erwin              stolleis     8  716353 1.116768e-05
## 17126 Sandra Erwin                 store     8  716353 1.116768e-05
## 17127 Sandra Erwin                stpsat     8  716353 1.116768e-05
## 17128 Sandra Erwin       straightforward     8  716353 1.116768e-05
## 17129 Sandra Erwin             strengths     8  716353 1.116768e-05
## 17130 Sandra Erwin              stresses     8  716353 1.116768e-05
## 17131 Sandra Erwin              stripped     8  716353 1.116768e-05
## 17132 Sandra Erwin          subsidiaries     8  716353 1.116768e-05
## 17133 Sandra Erwin           substantive     8  716353 1.116768e-05
## 17134 Sandra Erwin            sustaining     8  716353 1.116768e-05
## 17135 Sandra Erwin              switched     8  716353 1.116768e-05
## 17136 Sandra Erwin                  tall     8  716353 1.116768e-05
## 17137 Sandra Erwin              template     8  716353 1.116768e-05
## 17138 Sandra Erwin                tenure     8  716353 1.116768e-05
## 17139 Sandra Erwin               testify     8  716353 1.116768e-05
## 17140 Sandra Erwin                 theft     8  716353 1.116768e-05
## 17141 Sandra Erwin              there’ll     8  716353 1.116768e-05
## 17142 Sandra Erwin          thinkorbital     8  716353 1.116768e-05
## 17143 Sandra Erwin            thompson’s     8  716353 1.116768e-05
## 17144 Sandra Erwin             threshold     8  716353 1.116768e-05
## 17145 Sandra Erwin              thrilled     8  716353 1.116768e-05
## 17146 Sandra Erwin                thrown     8  716353 1.116768e-05
## 17147 Sandra Erwin               tighter     8  716353 1.116768e-05
## 17148 Sandra Erwin            tomorrow’s     8  716353 1.116768e-05
## 17149 Sandra Erwin               topline     8  716353 1.116768e-05
## 17150 Sandra Erwin                 touch     8  716353 1.116768e-05
## 17151 Sandra Erwin               touches     8  716353 1.116768e-05
## 17152 Sandra Erwin                  tour     8  716353 1.116768e-05
## 17153 Sandra Erwin             tradition     8  716353 1.116768e-05
## 17154 Sandra Erwin          transmitters     8  716353 1.116768e-05
## 17155 Sandra Erwin           transponder     8  716353 1.116768e-05
## 17156 Sandra Erwin           transported     8  716353 1.116768e-05
## 17157 Sandra Erwin                  tugs     8  716353 1.116768e-05
## 17158 Sandra Erwin                  tune     8  716353 1.116768e-05
## 17159 Sandra Erwin                 tweak     8  716353 1.116768e-05
## 17160 Sandra Erwin          uncontrolled     8  716353 1.116768e-05
## 17161 Sandra Erwin           underscores     8  716353 1.116768e-05
## 17162 Sandra Erwin             undertake     8  716353 1.116768e-05
## 17163 Sandra Erwin              unfairly     8  716353 1.116768e-05
## 17164 Sandra Erwin            unfettered     8  716353 1.116768e-05
## 17165 Sandra Erwin             unfolding     8  716353 1.116768e-05
## 17166 Sandra Erwin                unlock     8  716353 1.116768e-05
## 17167 Sandra Erwin           unspecified     8  716353 1.116768e-05
## 17168 Sandra Erwin              unstable     8  716353 1.116768e-05
## 17169 Sandra Erwin                usable     8  716353 1.116768e-05
## 17170 Sandra Erwin                  usaf     8  716353 1.116768e-05
## 17171 Sandra Erwin              utilized     8  716353 1.116768e-05
## 17172 Sandra Erwin                 valid     8  716353 1.116768e-05
## 17173 Sandra Erwin             valuation     8  716353 1.116768e-05
## 17174 Sandra Erwin                  vcls     8  716353 1.116768e-05
## 17175 Sandra Erwin                   vcs     8  716353 1.116768e-05
## 17176 Sandra Erwin              vespucci     8  716353 1.116768e-05
## 17177 Sandra Erwin                videos     8  716353 1.116768e-05
## 17178 Sandra Erwin                  vleo     8  716353 1.116768e-05
## 17179 Sandra Erwin                  warm     8  716353 1.116768e-05
## 17180 Sandra Erwin             warpspace     8  716353 1.116768e-05
## 17181 Sandra Erwin             waterfall     8  716353 1.116768e-05
## 17182 Sandra Erwin                waters     8  716353 1.116768e-05
## 17183 Sandra Erwin            weaponized     8  716353 1.116768e-05
## 17184 Sandra Erwin                  weil     8  716353 1.116768e-05
## 17185 Sandra Erwin              welcomes     8  716353 1.116768e-05
## 17186 Sandra Erwin               where’s     8  716353 1.116768e-05
## 17187 Sandra Erwin             withdrawn     8  716353 1.116768e-05
## 17188 Sandra Erwin              wondered     8  716353 1.116768e-05
## 17189 Sandra Erwin              workflow     8  716353 1.116768e-05
## 17190 Sandra Erwin                  zuma     8  716353 1.116768e-05
## 17191   Jeff Foust                    1d     7 1573821 4.447774e-06
## 17192   Jeff Foust                   1st     7 1573821 4.447774e-06
## 17193   Jeff Foust                 235th     7 1573821 4.447774e-06
## 17194   Jeff Foust                    2s     7 1573821 4.447774e-06
## 17195   Jeff Foust                   35e     7 1573821 4.447774e-06
## 17196   Jeff Foust                   39c     7 1573821 4.447774e-06
## 17197   Jeff Foust                  47th     7 1573821 4.447774e-06
## 17198   Jeff Foust                    4k     7 1573821 4.447774e-06
## 17199   Jeff Foust                   60s     7 1573821 4.447774e-06
## 17200   Jeff Foust                   a.s     7 1573821 4.447774e-06
## 17201   Jeff Foust                   abu     7 1573821 4.447774e-06
## 17202   Jeff Foust          accelerators     7 1573821 4.447774e-06
## 17203   Jeff Foust          accumulating     7 1573821 4.447774e-06
## 17204   Jeff Foust          accumulation     7 1573821 4.447774e-06
## 17205   Jeff Foust                  acre     7 1573821 4.447774e-06
## 17206   Jeff Foust       administrator’s     7 1573821 4.447774e-06
## 17207   Jeff Foust            aeroshells     7 1573821 4.447774e-06
## 17208   Jeff Foust                    af     7 1573821 4.447774e-06
## 17209   Jeff Foust             affiliate     7 1573821 4.447774e-06
## 17210   Jeff Foust                 agent     7 1573821 4.447774e-06
## 17211   Jeff Foust           aggregating     7 1573821 4.447774e-06
## 17212   Jeff Foust          agricultural     7 1573821 4.447774e-06
## 17213   Jeff Foust                agrios     7 1573821 4.447774e-06
## 17214   Jeff Foust                  aide     7 1573821 4.447774e-06
## 17215   Jeff Foust                 aires     7 1573821 4.447774e-06
## 17216   Jeff Foust                aitken     7 1573821 4.447774e-06
## 17217   Jeff Foust              akatsuki     7 1573821 4.447774e-06
## 17218   Jeff Foust                 alain     7 1573821 4.447774e-06
## 17219   Jeff Foust              aldridge     7 1573821 4.447774e-06
## 17220   Jeff Foust                 alice     7 1573821 4.447774e-06
## 17221   Jeff Foust                 alike     7 1573821 4.447774e-06
## 17222   Jeff Foust             alleviate     7 1573821 4.447774e-06
## 17223   Jeff Foust              amazonas     7 1573821 4.447774e-06
## 17224   Jeff Foust               andreas     7 1573821 4.447774e-06
## 17225   Jeff Foust              animated     7 1573821 4.447774e-06
## 17226   Jeff Foust                annett     7 1573821 4.447774e-06
## 17227   Jeff Foust             announces     7 1573821 4.447774e-06
## 17228   Jeff Foust             anonymous     7 1573821 4.447774e-06
## 17229   Jeff Foust            antarctica     7 1573821 4.447774e-06
## 17230   Jeff Foust             antitrust     7 1573821 4.447774e-06
## 17231   Jeff Foust              aphelion     7 1573821 4.447774e-06
## 17232   Jeff Foust               apparel     7 1573821 4.447774e-06
## 17233   Jeff Foust           appreciates     7 1573821 4.447774e-06
## 17234   Jeff Foust                  apps     7 1573821 4.447774e-06
## 17235   Jeff Foust                army’s     7 1573821 4.447774e-06
## 17236   Jeff Foust                 arqit     7 1573821 4.447774e-06
## 17237   Jeff Foust               arsenal     7 1573821 4.447774e-06
## 17238   Jeff Foust              ascended     7 1573821 4.447774e-06
## 17239   Jeff Foust                   ase     7 1573821 4.447774e-06
## 17240   Jeff Foust                 ashby     7 1573821 4.447774e-06
## 17241   Jeff Foust                aspire     7 1573821 4.447774e-06
## 17242   Jeff Foust               asteria     7 1573821 4.447774e-06
## 17243   Jeff Foust              astraius     7 1573821 4.447774e-06
## 17244   Jeff Foust           astronaut’s     7 1573821 4.447774e-06
## 17245   Jeff Foust          astroscale’s     7 1573821 4.447774e-06
## 17246   Jeff Foust              attracts     7 1573821 4.447774e-06
## 17247   Jeff Foust             audiences     7 1573821 4.447774e-06
## 17248   Jeff Foust              augsburg     7 1573821 4.447774e-06
## 17249   Jeff Foust              austrian     7 1573821 4.447774e-06
## 17250   Jeff Foust               avenues     7 1573821 4.447774e-06
## 17251   Jeff Foust              backward     7 1573821 4.447774e-06
## 17252   Jeff Foust               baldwin     7 1573821 4.447774e-06
## 17253   Jeff Foust               ballast     7 1573821 4.447774e-06
## 17254   Jeff Foust              ballpark     7 1573821 4.447774e-06
## 17255   Jeff Foust               beaches     7 1573821 4.447774e-06
## 17256   Jeff Foust                beam’s     7 1573821 4.447774e-06
## 17257   Jeff Foust                beauty     7 1573821 4.447774e-06
## 17258   Jeff Foust              behaving     7 1573821 4.447774e-06
## 17259   Jeff Foust               bella’s     7 1573821 4.447774e-06
## 17260   Jeff Foust             benedicto     7 1573821 4.447774e-06
## 17261   Jeff Foust                 birds     7 1573821 4.447774e-06
## 17262   Jeff Foust                 blood     7 1573821 4.447774e-06
## 17263   Jeff Foust            bluewalker     7 1573821 4.447774e-06
## 17264   Jeff Foust            blumenauer     7 1573821 4.447774e-06
## 17265   Jeff Foust                boehle     7 1573821 4.447774e-06
## 17266   Jeff Foust           boilerplate     7 1573821 4.447774e-06
## 17267   Jeff Foust                  bole     7 1573821 4.447774e-06
## 17268   Jeff Foust                  bolt     7 1573821 4.447774e-06
## 17269   Jeff Foust                 booch     7 1573821 4.447774e-06
## 17270   Jeff Foust                 brain     7 1573821 4.447774e-06
## 17271   Jeff Foust                brakes     7 1573821 4.447774e-06
## 17272   Jeff Foust             bresniker     7 1573821 4.447774e-06
## 17273   Jeff Foust            broadening     7 1573821 4.447774e-06
## 17274   Jeff Foust                 buddy     7 1573821 4.447774e-06
## 17275   Jeff Foust             budgeting     7 1573821 4.447774e-06
## 17276   Jeff Foust                buenos     7 1573821 4.447774e-06
## 17277   Jeff Foust                 burch     7 1573821 4.447774e-06
## 17278   Jeff Foust            busalacchi     7 1573821 4.447774e-06
## 17279   Jeff Foust                    c5     7 1573821 4.447774e-06
## 17280   Jeff Foust           calculating     7 1573821 4.447774e-06
## 17281   Jeff Foust             caltech’s     7 1573821 4.447774e-06
## 17282   Jeff Foust               cameron     7 1573821 4.447774e-06
## 17283   Jeff Foust                camino     7 1573821 4.447774e-06
## 17284   Jeff Foust              canberra     7 1573821 4.447774e-06
## 17285   Jeff Foust                canoll     7 1573821 4.447774e-06
## 17286   Jeff Foust                 capex     7 1573821 4.447774e-06
## 17287   Jeff Foust               carnell     7 1573821 4.447774e-06
## 17288   Jeff Foust             catherine     7 1573821 4.447774e-06
## 17289   Jeff Foust                   cbc     7 1573821 4.447774e-06
## 17290   Jeff Foust                  cede     7 1573821 4.447774e-06
## 17291   Jeff Foust           centrifugal     7 1573821 4.447774e-06
## 17292   Jeff Foust             champagne     7 1573821 4.447774e-06
## 17293   Jeff Foust               chavers     7 1573821 4.447774e-06
## 17294   Jeff Foust              cheering     7 1573821 4.447774e-06
## 17295   Jeff Foust               chooses     7 1573821 4.447774e-06
## 17296   Jeff Foust                  chub     7 1573821 4.447774e-06
## 17297   Jeff Foust               cleaner     7 1573821 4.447774e-06
## 17298   Jeff Foust           cleanliness     7 1573821 4.447774e-06
## 17299   Jeff Foust                 cliff     7 1573821 4.447774e-06
## 17300   Jeff Foust                clinic     7 1573821 4.447774e-06
## 17301   Jeff Foust             clipper’s     7 1573821 4.447774e-06
## 17302   Jeff Foust               cochran     7 1573821 4.447774e-06
## 17303   Jeff Foust              codified     7 1573821 4.447774e-06
## 17304   Jeff Foust                coface     7 1573821 4.447774e-06
## 17305   Jeff Foust                 colin     7 1573821 4.447774e-06
## 17306   Jeff Foust              colonies     7 1573821 4.447774e-06
## 17307   Jeff Foust          combinations     7 1573821 4.447774e-06
## 17308   Jeff Foust               comet’s     7 1573821 4.447774e-06
## 17309   Jeff Foust           comparisons     7 1573821 4.447774e-06
## 17310   Jeff Foust          complemented     7 1573821 4.447774e-06
## 17311   Jeff Foust          complexities     7 1573821 4.447774e-06
## 17312   Jeff Foust              complied     7 1573821 4.447774e-06
## 17313   Jeff Foust             comstac’s     7 1573821 4.447774e-06
## 17314   Jeff Foust          concentrated     7 1573821 4.447774e-06
## 17315   Jeff Foust         concentration     7 1573821 4.447774e-06
## 17316   Jeff Foust             condemned     7 1573821 4.447774e-06
## 17317   Jeff Foust           congressmen     7 1573821 4.447774e-06
## 17318   Jeff Foust              connects     7 1573821 4.447774e-06
## 17319   Jeff Foust              conserve     7 1573821 4.447774e-06
## 17320   Jeff Foust             constancy     7 1573821 4.447774e-06
## 17321   Jeff Foust               consume     7 1573821 4.447774e-06
## 17322   Jeff Foust         containerized     7 1573821 4.447774e-06
## 17323   Jeff Foust          contributors     7 1573821 4.447774e-06
## 17324   Jeff Foust            convection     7 1573821 4.447774e-06
## 17325   Jeff Foust           convertible     7 1573821 4.447774e-06
## 17326   Jeff Foust               cordova     7 1573821 4.447774e-06
## 17327   Jeff Foust        correspondence     7 1573821 4.447774e-06
## 17328   Jeff Foust            corruption     7 1573821 4.447774e-06
## 17329   Jeff Foust              county’s     7 1573821 4.447774e-06
## 17330   Jeff Foust                  coup     7 1573821 4.447774e-06
## 17331   Jeff Foust                 cowan     7 1573821 4.447774e-06
## 17332   Jeff Foust                 crack     7 1573821 4.447774e-06
## 17333   Jeff Foust              cracking     7 1573821 4.447774e-06
## 17334   Jeff Foust              crescent     7 1573821 4.447774e-06
## 17335   Jeff Foust              cristina     7 1573821 4.447774e-06
## 17336   Jeff Foust               crocker     7 1573821 4.447774e-06
## 17337   Jeff Foust                  cryo     7 1573821 4.447774e-06
## 17338   Jeff Foust      cryptocurrencies     7 1573821 4.447774e-06
## 17339   Jeff Foust                  csli     7 1573821 4.447774e-06
## 17340   Jeff Foust                 cubit     7 1573821 4.447774e-06
## 17341   Jeff Foust            culminated     7 1573821 4.447774e-06
## 17342   Jeff Foust           curiosity’s     7 1573821 4.447774e-06
## 17343   Jeff Foust               cushion     7 1573821 4.447774e-06
## 17344   Jeff Foust           cylindrical     7 1573821 4.447774e-06
## 17345   Jeff Foust               daytime     7 1573821 4.447774e-06
## 17346   Jeff Foust              debating     7 1573821 4.447774e-06
## 17347   Jeff Foust                 debra     7 1573821 4.447774e-06
## 17348   Jeff Foust            december’s     7 1573821 4.447774e-06
## 17349   Jeff Foust                decent     7 1573821 4.447774e-06
## 17350   Jeff Foust         decentralized     7 1573821 4.447774e-06
## 17351   Jeff Foust               deepest     7 1573821 4.447774e-06
## 17352   Jeff Foust               defects     7 1573821 4.447774e-06
## 17353   Jeff Foust               deficit     7 1573821 4.447774e-06
## 17354   Jeff Foust              definite     7 1573821 4.447774e-06
## 17355   Jeff Foust            deflecting     7 1573821 4.447774e-06
## 17356   Jeff Foust                delong     7 1573821 4.447774e-06
## 17357   Jeff Foust                depete     7 1573821 4.447774e-06
## 17358   Jeff Foust             depriving     7 1573821 4.447774e-06
## 17359   Jeff Foust          descriptions     7 1573821 4.447774e-06
## 17360   Jeff Foust                detach     7 1573821 4.447774e-06
## 17361   Jeff Foust                 devas     7 1573821 4.447774e-06
## 17362   Jeff Foust               deviate     7 1573821 4.447774e-06
## 17363   Jeff Foust                 devil     7 1573821 4.447774e-06
## 17364   Jeff Foust                 dhabi     7 1573821 4.447774e-06
## 17365   Jeff Foust               diamond     7 1573821 4.447774e-06
## 17366   Jeff Foust              didymoon     7 1573821 4.447774e-06
## 17367   Jeff Foust        differentiator     7 1573821 4.447774e-06
## 17368   Jeff Foust                   dig     7 1573821 4.447774e-06
## 17369   Jeff Foust             disbanded     7 1573821 4.447774e-06
## 17370   Jeff Foust          discontinued     7 1573821 4.447774e-06
## 17371   Jeff Foust           discouraged     7 1573821 4.447774e-06
## 17372   Jeff Foust           discourages     7 1573821 4.447774e-06
## 17373   Jeff Foust              discrete     7 1573821 4.447774e-06
## 17374   Jeff Foust            discretion     7 1573821 4.447774e-06
## 17375   Jeff Foust                doctor     7 1573821 4.447774e-06
## 17376   Jeff Foust            documented     7 1573821 4.447774e-06
## 17377   Jeff Foust                 domes     7 1573821 4.447774e-06
## 17378   Jeff Foust                donors     7 1573821 4.447774e-06
## 17379   Jeff Foust              downward     7 1573821 4.447774e-06
## 17380   Jeff Foust                 drain     7 1573821 4.447774e-06
## 17381   Jeff Foust               drained     7 1573821 4.447774e-06
## 17382   Jeff Foust             drawbacks     7 1573821 4.447774e-06
## 17383   Jeff Foust            droneships     7 1573821 4.447774e-06
## 17384   Jeff Foust             dudzinski     7 1573821 4.447774e-06
## 17385   Jeff Foust                dulles     7 1573821 4.447774e-06
## 17386   Jeff Foust           duplication     7 1573821 4.447774e-06
## 17387   Jeff Foust                   ean     7 1573821 4.447774e-06
## 17388   Jeff Foust                   ear     7 1573821 4.447774e-06
## 17389   Jeff Foust               echoing     7 1573821 4.447774e-06
## 17390   Jeff Foust                   egs     7 1573821 4.447774e-06
## 17391   Jeff Foust             ejections     7 1573821 4.447774e-06
## 17392   Jeff Foust        electrothermal     7 1573821 4.447774e-06
## 17393   Jeff Foust                 elena     7 1573821 4.447774e-06
## 17394   Jeff Foust                eleven     7 1573821 4.447774e-06
## 17395   Jeff Foust                   elt     7 1573821 4.447774e-06
## 17396   Jeff Foust             embracing     7 1573821 4.447774e-06
## 17397   Jeff Foust            emissivity     7 1573821 4.447774e-06
## 17398   Jeff Foust             emotional     7 1573821 4.447774e-06
## 17399   Jeff Foust             employing     7 1573821 4.447774e-06
## 17400   Jeff Foust                  emus     7 1573821 4.447774e-06
## 17401   Jeff Foust         encouragement     7 1573821 4.447774e-06
## 17402   Jeff Foust             encrypted     7 1573821 4.447774e-06
## 17403   Jeff Foust                enders     7 1573821 4.447774e-06
## 17404   Jeff Foust                 enemy     7 1573821 4.447774e-06
## 17405   Jeff Foust               enforce     7 1573821 4.447774e-06
## 17406   Jeff Foust               engined     7 1573821 4.447774e-06
## 17407   Jeff Foust                enjoys     7 1573821 4.447774e-06
## 17408   Jeff Foust              equation     7 1573821 4.447774e-06
## 17409   Jeff Foust               erector     7 1573821 4.447774e-06
## 17410   Jeff Foust                  eren     7 1573821 4.447774e-06
## 17411   Jeff Foust                 erode     7 1573821 4.447774e-06
## 17412   Jeff Foust              escaping     7 1573821 4.447774e-06
## 17413   Jeff Foust              espoused     7 1573821 4.447774e-06
## 17414   Jeff Foust               ethical     7 1573821 4.447774e-06
## 17415   Jeff Foust            evaluators     7 1573821 4.447774e-06
## 17416   Jeff Foust               event’s     7 1573821 4.447774e-06
## 17417   Jeff Foust            exacerbate     7 1573821 4.447774e-06
## 17418   Jeff Foust          exacerbating     7 1573821 4.447774e-06
## 17419   Jeff Foust                   exo     7 1573821 4.447774e-06
## 17420   Jeff Foust         expeditiously     7 1573821 4.447774e-06
## 17421   Jeff Foust            expiration     7 1573821 4.447774e-06
## 17422   Jeff Foust            extrusions     7 1573821 4.447774e-06
## 17423   Jeff Foust                    f9     7 1573821 4.447774e-06
## 17424   Jeff Foust              fabulous     7 1573821 4.447774e-06
## 17425   Jeff Foust           facilitates     7 1573821 4.447774e-06
## 17426   Jeff Foust            facility’s     7 1573821 4.447774e-06
## 17427   Jeff Foust                   fai     7 1573821 4.447774e-06
## 17428   Jeff Foust                  fare     7 1573821 4.447774e-06
## 17429   Jeff Foust              farewell     7 1573821 4.447774e-06
## 17430   Jeff Foust              farshchi     7 1573821 4.447774e-06
## 17431   Jeff Foust                father     7 1573821 4.447774e-06
## 17432   Jeff Foust               fatigue     7 1573821 4.447774e-06
## 17433   Jeff Foust                   fbi     7 1573821 4.447774e-06
## 17434   Jeff Foust               fearing     7 1573821 4.447774e-06
## 17435   Jeff Foust                 fedor     7 1573821 4.447774e-06
## 17436   Jeff Foust               feeding     7 1573821 4.447774e-06
## 17437   Jeff Foust               felicia     7 1573821 4.447774e-06
## 17438   Jeff Foust                 felix     7 1573821 4.447774e-06
## 17439   Jeff Foust                  fema     7 1573821 4.447774e-06
## 17440   Jeff Foust               fengyun     7 1573821 4.447774e-06
## 17441   Jeff Foust               ferring     7 1573821 4.447774e-06
## 17442   Jeff Foust              festival     7 1573821 4.447774e-06
## 17443   Jeff Foust               fielded     7 1573821 4.447774e-06
## 17444   Jeff Foust            financials     7 1573821 4.447774e-06
## 17445   Jeff Foust             flagships     7 1573821 4.447774e-06
## 17446   Jeff Foust          flammability     7 1573821 4.447774e-06
## 17447   Jeff Foust                 flare     7 1573821 4.447774e-06
## 17448   Jeff Foust         flexibilities     7 1573821 4.447774e-06
## 17449   Jeff Foust                 focal     7 1573821 4.447774e-06
## 17450   Jeff Foust               foolish     7 1573821 4.447774e-06
## 17451   Jeff Foust            forecasted     7 1573821 4.447774e-06
## 17452   Jeff Foust                forget     7 1573821 4.447774e-06
## 17453   Jeff Foust                frames     7 1573821 4.447774e-06
## 17454   Jeff Foust             frankfurt     7 1573821 4.447774e-06
## 17455   Jeff Foust                 frick     7 1573821 4.447774e-06
## 17456   Jeff Foust              fruitful     7 1573821 4.447774e-06
## 17457   Jeff Foust              fujimoto     7 1573821 4.447774e-06
## 17458   Jeff Foust            functioned     7 1573821 4.447774e-06
## 17459   Jeff Foust           furloughing     7 1573821 4.447774e-06
## 17460   Jeff Foust                  gail     7 1573821 4.447774e-06
## 17461   Jeff Foust             gapfiller     7 1573821 4.447774e-06
## 17462   Jeff Foust                garage     7 1573821 4.447774e-06
## 17463   Jeff Foust               garbage     7 1573821 4.447774e-06
## 17464   Jeff Foust            gatherings     7 1573821 4.447774e-06
## 17465   Jeff Foust             genuinely     7 1573821 4.447774e-06
## 17466   Jeff Foust           geosciences     7 1573821 4.447774e-06
## 17467   Jeff Foust                   gfz     7 1573821 4.447774e-06
## 17468   Jeff Foust              giffords     7 1573821 4.447774e-06
## 17469   Jeff Foust               gilbert     7 1573821 4.447774e-06
## 17470   Jeff Foust                  glut     7 1573821 4.447774e-06
## 17471   Jeff Foust                    gm     7 1573821 4.447774e-06
## 17472   Jeff Foust            governor’s     7 1573821 4.447774e-06
## 17473   Jeff Foust                  gpim     7 1573821 4.447774e-06
## 17474   Jeff Foust                 grabe     7 1573821 4.447774e-06
## 17475   Jeff Foust                grande     7 1573821 4.447774e-06
## 17476   Jeff Foust               greaves     7 1573821 4.447774e-06
## 17477   Jeff Foust             griffin’s     7 1573821 4.447774e-06
## 17478   Jeff Foust               grisham     7 1573821 4.447774e-06
## 17479   Jeff Foust                 gssap     7 1573821 4.447774e-06
## 17480   Jeff Foust                 gusts     7 1573821 4.447774e-06
## 17481   Jeff Foust                hacked     7 1573821 4.447774e-06
## 17482   Jeff Foust               hacking     7 1573821 4.447774e-06
## 17483   Jeff Foust              hadfield     7 1573821 4.447774e-06
## 17484   Jeff Foust             hampshire     7 1573821 4.447774e-06
## 17485   Jeff Foust               hampton     7 1573821 4.447774e-06
## 17486   Jeff Foust               hangars     7 1573821 4.447774e-06
## 17487   Jeff Foust               hawking     7 1573821 4.447774e-06
## 17488   Jeff Foust                    hd     7 1573821 4.447774e-06
## 17489   Jeff Foust             headcount     7 1573821 4.447774e-06
## 17490   Jeff Foust             headwinds     7 1573821 4.447774e-06
## 17491   Jeff Foust            heliopause     7 1573821 4.447774e-06
## 17492   Jeff Foust            helioswarm     7 1573821 4.447774e-06
## 17493   Jeff Foust                  helm     7 1573821 4.447774e-06
## 17494   Jeff Foust               herndon     7 1573821 4.447774e-06
## 17495   Jeff Foust              hertling     7 1573821 4.447774e-06
## 17496   Jeff Foust                  hide     7 1573821 4.447774e-06
## 17497   Jeff Foust                holger     7 1573821 4.447774e-06
## 17498   Jeff Foust          horizontally     7 1573821 4.447774e-06
## 17499   Jeff Foust            hospitable     7 1573821 4.447774e-06
## 17500   Jeff Foust                hotels     7 1573821 4.447774e-06
## 17501   Jeff Foust              hovering     7 1573821 4.447774e-06
## 17502   Jeff Foust              humanoid     7 1573821 4.447774e-06
## 17503   Jeff Foust              humbling     7 1573821 4.447774e-06
## 17504   Jeff Foust             hutchison     7 1573821 4.447774e-06
## 17505   Jeff Foust              hydrated     7 1573821 4.447774e-06
## 17506   Jeff Foust              hydroxyl     7 1573821 4.447774e-06
## 17507   Jeff Foust            hypothesis     7 1573821 4.447774e-06
## 17508   Jeff Foust               iceland     7 1573821 4.447774e-06
## 17509   Jeff Foust               iceye’s     7 1573821 4.447774e-06
## 17510   Jeff Foust            identities     7 1573821 4.447774e-06
## 17511   Jeff Foust                    ik     7 1573821 4.447774e-06
## 17512   Jeff Foust                  ilan     7 1573821 4.447774e-06
## 17513   Jeff Foust                   ilc     7 1573821 4.447774e-06
## 17514   Jeff Foust             impactful     7 1573821 4.447774e-06
## 17515   Jeff Foust            impatience     7 1573821 4.447774e-06
## 17516   Jeff Foust               impetus     7 1573821 4.447774e-06
## 17517   Jeff Foust            implements     7 1573821 4.447774e-06
## 17518   Jeff Foust           implication     7 1573821 4.447774e-06
## 17519   Jeff Foust           impractical     7 1573821 4.447774e-06
## 17520   Jeff Foust          incentivized     7 1573821 4.447774e-06
## 17521   Jeff Foust          incompatible     7 1573821 4.447774e-06
## 17522   Jeff Foust           indentation     7 1573821 4.447774e-06
## 17523   Jeff Foust         inexpensively     7 1573821 4.447774e-06
## 17524   Jeff Foust              inflight     7 1573821 4.447774e-06
## 17525   Jeff Foust          infrequently     7 1573821 4.447774e-06
## 17526   Jeff Foust                inning     7 1573821 4.447774e-06
## 17527   Jeff Foust                 insar     7 1573821 4.447774e-06
## 17528   Jeff Foust              instance     7 1573821 4.447774e-06
## 17529   Jeff Foust             interacts     7 1573821 4.447774e-06
## 17530   Jeff Foust             interiors     7 1573821 4.447774e-06
## 17531   Jeff Foust             interpret     7 1573821 4.447774e-06
## 17532   Jeff Foust            intriguing     7 1573821 4.447774e-06
## 17533   Jeff Foust                  iowa     7 1573821 4.447774e-06
## 17534   Jeff Foust                  iqps     7 1573821 4.447774e-06
## 17535   Jeff Foust             irregular     7 1573821 4.447774e-06
## 17536   Jeff Foust                 isef2     7 1573821 4.447774e-06
## 17537   Jeff Foust                   ish     7 1573821 4.447774e-06
## 17538   Jeff Foust                   isp     7 1573821 4.447774e-06
## 17539   Jeff Foust               jacklyn     7 1573821 4.447774e-06
## 17540   Jeff Foust                 jacob     7 1573821 4.447774e-06
## 17541   Jeff Foust                jaguar     7 1573821 4.447774e-06
## 17542   Jeff Foust                 jenny     7 1573821 4.447774e-06
## 17543   Jeff Foust                joshua     7 1573821 4.447774e-06
## 17544   Jeff Foust                 kaber     7 1573821 4.447774e-06
## 17545   Jeff Foust                  kahn     7 1573821 4.447774e-06
## 17546   Jeff Foust                kansas     7 1573821 4.447774e-06
## 17547   Jeff Foust               kathryn     7 1573821 4.447774e-06
## 17548   Jeff Foust                  keck     7 1573821 4.447774e-06
## 17549   Jeff Foust                 keith     7 1573821 4.447774e-06
## 17550   Jeff Foust             kennicutt     7 1573821 4.447774e-06
## 17551   Jeff Foust             khashoggi     7 1573821 4.447774e-06
## 17552   Jeff Foust                 kicks     7 1573821 4.447774e-06
## 17553   Jeff Foust            kieatiwong     7 1573821 4.447774e-06
## 17554   Jeff Foust              koreasat     7 1573821 4.447774e-06
## 17555   Jeff Foust               krystal     7 1573821 4.447774e-06
## 17556   Jeff Foust                 ksc’s     7 1573821 4.447774e-06
## 17557   Jeff Foust              kuaizhou     7 1573821 4.447774e-06
## 17558   Jeff Foust            kunstadter     7 1573821 4.447774e-06
## 17559   Jeff Foust                    l2     7 1573821 4.447774e-06
## 17560   Jeff Foust                 lacus     7 1573821 4.447774e-06
## 17561   Jeff Foust            landmapper     7 1573821 4.447774e-06
## 17562   Jeff Foust                 lanes     7 1573821 4.447774e-06
## 17563   Jeff Foust                 lapsa     7 1573821 4.447774e-06
## 17564   Jeff Foust              latching     7 1573821 4.447774e-06
## 17565   Jeff Foust            launcher’s     7 1573821 4.447774e-06
## 17566   Jeff Foust                lauren     7 1573821 4.447774e-06
## 17567   Jeff Foust          lautenbacher     7 1573821 4.447774e-06
## 17568   Jeff Foust              lawrence     7 1573821 4.447774e-06
## 17569   Jeff Foust                layout     7 1573821 4.447774e-06
## 17570   Jeff Foust                  ldsd     7 1573821 4.447774e-06
## 17571   Jeff Foust               lending     7 1573821 4.447774e-06
## 17572   Jeff Foust                lessen     7 1573821 4.447774e-06
## 17573   Jeff Foust                 lever     7 1573821 4.447774e-06
## 17574   Jeff Foust               library     7 1573821 4.447774e-06
## 17575   Jeff Foust                liddle     7 1573821 4.447774e-06
## 17576   Jeff Foust              likewise     7 1573821 4.447774e-06
## 17577   Jeff Foust              limiters     7 1573821 4.447774e-06
## 17578   Jeff Foust                  limp     7 1573821 4.447774e-06
## 17579   Jeff Foust               lincoln     7 1573821 4.447774e-06
## 17580   Jeff Foust               liquide     7 1573821 4.447774e-06
## 17581   Jeff Foust            littlejohn     7 1573821 4.447774e-06
## 17582   Jeff Foust               lockers     7 1573821 4.447774e-06
## 17583   Jeff Foust               locking     7 1573821 4.447774e-06
## 17584   Jeff Foust                 logic     7 1573821 4.447774e-06
## 17585   Jeff Foust                 loves     7 1573821 4.447774e-06
## 17586   Jeff Foust                   luc     7 1573821 4.447774e-06
## 17587   Jeff Foust                  luch     7 1573821 4.447774e-06
## 17588   Jeff Foust                lv0007     7 1573821 4.447774e-06
## 17589   Jeff Foust                   m10     7 1573821 4.447774e-06
## 17590   Jeff Foust                 m315e     7 1573821 4.447774e-06
## 17591   Jeff Foust                mahone     7 1573821 4.447774e-06
## 17592   Jeff Foust              mainland     7 1573821 4.447774e-06
## 17593   Jeff Foust              mainstay     7 1573821 4.447774e-06
## 17594   Jeff Foust            manageable     7 1573821 4.447774e-06
## 17595   Jeff Foust              mansouri     7 1573821 4.447774e-06
## 17596   Jeff Foust                marcus     7 1573821 4.447774e-06
## 17597   Jeff Foust              marillyn     7 1573821 4.447774e-06
## 17598   Jeff Foust                 marri     7 1573821 4.447774e-06
## 17599   Jeff Foust                marvel     7 1573821 4.447774e-06
## 17600   Jeff Foust             maximizes     7 1573821 4.447774e-06
## 17601   Jeff Foust                   mcb     7 1573821 4.447774e-06
## 17602   Jeff Foust               mccaleb     7 1573821 4.447774e-06
## 17603   Jeff Foust                 mccaw     7 1573821 4.447774e-06
## 17604   Jeff Foust                 menon     7 1573821 4.447774e-06
## 17605   Jeff Foust                menzel     7 1573821 4.447774e-06
## 17606   Jeff Foust             microbial     7 1573821 4.447774e-06
## 17607   Jeff Foust             microsats     7 1573821 4.447774e-06
## 17608   Jeff Foust            military’s     7 1573821 4.447774e-06
## 17609   Jeff Foust               millman     7 1573821 4.447774e-06
## 17610   Jeff Foust               mineral     7 1573821 4.447774e-06
## 17611   Jeff Foust                 minus     7 1573821 4.447774e-06
## 17612   Jeff Foust              mismatch     7 1573821 4.447774e-06
## 17613   Jeff Foust      misunderstanding     7 1573821 4.447774e-06
## 17614   Jeff Foust              misurkin     7 1573821 4.447774e-06
## 17615   Jeff Foust            modernized     7 1573821 4.447774e-06
## 17616   Jeff Foust              mogensen     7 1573821 4.447774e-06
## 17617   Jeff Foust              moghbeli     7 1573821 4.447774e-06
## 17618   Jeff Foust              monopoly     7 1573821 4.447774e-06
## 17619   Jeff Foust              morrison     7 1573821 4.447774e-06
## 17620   Jeff Foust                   mpl     7 1573821 4.447774e-06
## 17621   Jeff Foust                   msl     7 1573821 4.447774e-06
## 17622   Jeff Foust              muratore     7 1573821 4.447774e-06
## 17623   Jeff Foust                 muñoz     7 1573821 4.447774e-06
## 17624   Jeff Foust                 naoki     7 1573821 4.447774e-06
## 17625   Jeff Foust               nardini     7 1573821 4.447774e-06
## 17626   Jeff Foust              newcomer     7 1573821 4.447774e-06
## 17627   Jeff Foust               noirlab     7 1573821 4.447774e-06
## 17628   Jeff Foust      noncontroversial     7 1573821 4.447774e-06
## 17629   Jeff Foust             notifying     7 1573821 4.447774e-06
## 17630   Jeff Foust       notwithstanding     7 1573821 4.447774e-06
## 17631   Jeff Foust                   nsc     7 1573821 4.447774e-06
## 17632   Jeff Foust                  nsil     7 1573821 4.447774e-06
## 17633   Jeff Foust             numerical     7 1573821 4.447774e-06
## 17634   Jeff Foust              obscured     7 1573821 4.447774e-06
## 17635   Jeff Foust                occurs     7 1573821 4.447774e-06
## 17636   Jeff Foust                  ocsd     7 1573821 4.447774e-06
## 17637   Jeff Foust                   odd     7 1573821 4.447774e-06
## 17638   Jeff Foust                  ofek     7 1573821 4.447774e-06
## 17639   Jeff Foust               onerous     7 1573821 4.447774e-06
## 17640   Jeff Foust           operability     7 1573821 4.447774e-06
## 17641   Jeff Foust                  oral     7 1573821 4.447774e-06
## 17642   Jeff Foust                orbite     7 1573821 4.447774e-06
## 17643   Jeff Foust             orbiter’s     7 1573821 4.447774e-06
## 17644   Jeff Foust              orndorff     7 1573821 4.447774e-06
## 17645   Jeff Foust                outfit     7 1573821 4.447774e-06
## 17646   Jeff Foust              outright     7 1573821 4.447774e-06
## 17647   Jeff Foust            outweighed     7 1573821 4.447774e-06
## 17648   Jeff Foust                  oval     7 1573821 4.447774e-06
## 17649   Jeff Foust          overcapacity     7 1573821 4.447774e-06
## 17650   Jeff Foust        overpressurize     7 1573821 4.447774e-06
## 17651   Jeff Foust            oversupply     7 1573821 4.447774e-06
## 17652   Jeff Foust              overtime     7 1573821 4.447774e-06
## 17653   Jeff Foust                 ozone     7 1573821 4.447774e-06
## 17654   Jeff Foust                o’hara     7 1573821 4.447774e-06
## 17655   Jeff Foust               padalka     7 1573821 4.447774e-06
## 17656   Jeff Foust               painted     7 1573821 4.447774e-06
## 17657   Jeff Foust                panama     7 1573821 4.447774e-06
## 17658   Jeff Foust             panasonic     7 1573821 4.447774e-06
## 17659   Jeff Foust          panchromatic     7 1573821 4.447774e-06
## 17660   Jeff Foust                 paolo     7 1573821 4.447774e-06
## 17661   Jeff Foust               patents     7 1573821 4.447774e-06
## 17662   Jeff Foust              patients     7 1573821 4.447774e-06
## 17663   Jeff Foust                patrol     7 1573821 4.447774e-06
## 17664   Jeff Foust             patterned     7 1573821 4.447774e-06
## 17665   Jeff Foust                 patti     7 1573821 4.447774e-06
## 17666   Jeff Foust                paving     7 1573821 4.447774e-06
## 17667   Jeff Foust                   pcm     7 1573821 4.447774e-06
## 17668   Jeff Foust                  pcms     7 1573821 4.447774e-06
## 17669   Jeff Foust           peacekeeper     7 1573821 4.447774e-06
## 17670   Jeff Foust          pennsylvania     7 1573821 4.447774e-06
## 17671   Jeff Foust               persist     7 1573821 4.447774e-06
## 17672   Jeff Foust             persisted     7 1573821 4.447774e-06
## 17673   Jeff Foust          perspectives     7 1573821 4.447774e-06
## 17674   Jeff Foust            petersburg     7 1573821 4.447774e-06
## 17675   Jeff Foust            photometer     7 1573821 4.447774e-06
## 17676   Jeff Foust                   pit     7 1573821 4.447774e-06
## 17677   Jeff Foust               plainly     7 1573821 4.447774e-06
## 17678   Jeff Foust                plants     7 1573821 4.447774e-06
## 17679   Jeff Foust                planum     7 1573821 4.447774e-06
## 17680   Jeff Foust                plates     7 1573821 4.447774e-06
## 17681   Jeff Foust              platinum     7 1573821 4.447774e-06
## 17682   Jeff Foust            playground     7 1573821 4.447774e-06
## 17683   Jeff Foust              pleasure     7 1573821 4.447774e-06
## 17684   Jeff Foust            pocketqube     7 1573821 4.447774e-06
## 17685   Jeff Foust         polybutadiene     7 1573821 4.447774e-06
## 17686   Jeff Foust              poseidon     7 1573821 4.447774e-06
## 17687   Jeff Foust                posing     7 1573821 4.447774e-06
## 17688   Jeff Foust               possess     7 1573821 4.447774e-06
## 17689   Jeff Foust               posting     7 1573821 4.447774e-06
## 17690   Jeff Foust              postings     7 1573821 4.447774e-06
## 17691   Jeff Foust         precautionary     7 1573821 4.447774e-06
## 17692   Jeff Foust           precautions     7 1573821 4.447774e-06
## 17693   Jeff Foust              preceded     7 1573821 4.447774e-06
## 17694   Jeff Foust           preeminence     7 1573821 4.447774e-06
## 17695   Jeff Foust                primes     7 1573821 4.447774e-06
## 17696   Jeff Foust                   pro     7 1573821 4.447774e-06
## 17697   Jeff Foust             proceeded     7 1573821 4.447774e-06
## 17698   Jeff Foust             processed     7 1573821 4.447774e-06
## 17699   Jeff Foust             processor     7 1573821 4.447774e-06
## 17700   Jeff Foust              producer     7 1573821 4.447774e-06
## 17701   Jeff Foust           progression     7 1573821 4.447774e-06
## 17702   Jeff Foust              promptly     7 1573821 4.447774e-06
## 17703   Jeff Foust              proton’s     7 1573821 4.447774e-06
## 17704   Jeff Foust                 pryor     7 1573821 4.447774e-06
## 17705   Jeff Foust               pursues     7 1573821 4.447774e-06
## 17706   Jeff Foust              quadrant     7 1573821 4.447774e-06
## 17707   Jeff Foust                 quake     7 1573821 4.447774e-06
## 17708   Jeff Foust          quantitative     7 1573821 4.447774e-06
## 17709   Jeff Foust             radically     7 1573821 4.447774e-06
## 17710   Jeff Foust           radiometers     7 1573821 4.447774e-06
## 17711   Jeff Foust         ramifications     7 1573821 4.447774e-06
## 17712   Jeff Foust          ratification     7 1573821 4.447774e-06
## 17713   Jeff Foust            rationales     7 1573821 4.447774e-06
## 17714   Jeff Foust                rayman     7 1573821 4.447774e-06
## 17715   Jeff Foust              rayyanah     7 1573821 4.447774e-06
## 17716   Jeff Foust           realignment     7 1573821 4.447774e-06
## 17717   Jeff Foust                  reap     7 1573821 4.447774e-06
## 17718   Jeff Foust         reauthorizing     7 1573821 4.447774e-06
## 17719   Jeff Foust            rebounding     7 1573821 4.447774e-06
## 17720   Jeff Foust             rebranded     7 1573821 4.447774e-06
## 17721   Jeff Foust              recharge     7 1573821 4.447774e-06
## 17722   Jeff Foust             recipient     7 1573821 4.447774e-06
## 17723   Jeff Foust             reconvene     7 1573821 4.447774e-06
## 17724   Jeff Foust              recorder     7 1573821 4.447774e-06
## 17725   Jeff Foust            recoveries     7 1573821 4.447774e-06
## 17726   Jeff Foust                redeem     7 1573821 4.447774e-06
## 17727   Jeff Foust           redirecting     7 1573821 4.447774e-06
## 17728   Jeff Foust               redmond     7 1573821 4.447774e-06
## 17729   Jeff Foust          redundancies     7 1573821 4.447774e-06
## 17730   Jeff Foust          reevaluating     7 1573821 4.447774e-06
## 17731   Jeff Foust                refuge     7 1573821 4.447774e-06
## 17732   Jeff Foust            refundable     7 1573821 4.447774e-06
## 17733   Jeff Foust                regain     7 1573821 4.447774e-06
## 17734   Jeff Foust               regimes     7 1573821 4.447774e-06
## 17735   Jeff Foust            reiterates     7 1573821 4.447774e-06
## 17736   Jeff Foust              relating     7 1573821 4.447774e-06
## 17737   Jeff Foust              relation     7 1573821 4.447774e-06
## 17738   Jeff Foust             reluctant     7 1573821 4.447774e-06
## 17739   Jeff Foust              remarked     7 1573821 4.447774e-06
## 17740   Jeff Foust             reminding     7 1573821 4.447774e-06
## 17741   Jeff Foust                 renew     7 1573821 4.447774e-06
## 17742   Jeff Foust               renewal     7 1573821 4.447774e-06
## 17743   Jeff Foust             resellers     7 1573821 4.447774e-06
## 17744   Jeff Foust              resident     7 1573821 4.447774e-06
## 17745   Jeff Foust              retailer     7 1573821 4.447774e-06
## 17746   Jeff Foust                   rfa     7 1573821 4.447774e-06
## 17747   Jeff Foust                 rigid     7 1573821 4.447774e-06
## 17748   Jeff Foust                    ro     7 1573821 4.447774e-06
## 17749   Jeff Foust                 robin     7 1573821 4.447774e-06
## 17750   Jeff Foust                rookie     7 1573821 4.447774e-06
## 17751   Jeff Foust                 rosie     7 1573821 4.447774e-06
## 17752   Jeff Foust                rotary     7 1573821 4.447774e-06
## 17753   Jeff Foust            rotational     7 1573821 4.447774e-06
## 17754   Jeff Foust            rothenberg     7 1573821 4.447774e-06
## 17755   Jeff Foust               roussel     7 1573821 4.447774e-06
## 17756   Jeff Foust                  rowe     7 1573821 4.447774e-06
## 17757   Jeff Foust                   rre     7 1573821 4.447774e-06
## 17758   Jeff Foust                   rss     7 1573821 4.447774e-06
## 17759   Jeff Foust         ruppersberger     7 1573821 4.447774e-06
## 17760   Jeff Foust              ruptured     7 1573821 4.447774e-06
## 17761   Jeff Foust                 rutan     7 1573821 4.447774e-06
## 17762   Jeff Foust                 ryugu     7 1573821 4.447774e-06
## 17763   Jeff Foust             sacrifice     7 1573821 4.447774e-06
## 17764   Jeff Foust                salwan     7 1573821 4.447774e-06
## 17765   Jeff Foust            sanctioned     7 1573821 4.447774e-06
## 17766   Jeff Foust                  sara     7 1573821 4.447774e-06
## 17767   Jeff Foust               satcon1     7 1573821 4.447774e-06
## 17768   Jeff Foust          satisfactory     7 1573821 4.447774e-06
## 17769   Jeff Foust               satoshi     7 1573821 4.447774e-06
## 17770   Jeff Foust             saturated     7 1573821 4.447774e-06
## 17771   Jeff Foust                schaus     7 1573821 4.447774e-06
## 17772   Jeff Foust                scored     7 1573821 4.447774e-06
## 17773   Jeff Foust               screens     7 1573821 4.447774e-06
## 17774   Jeff Foust             scrubbing     7 1573821 4.447774e-06
## 17775   Jeff Foust                 seize     7 1573821 4.447774e-06
## 17776   Jeff Foust                server     7 1573821 4.447774e-06
## 17777   Jeff Foust              servicer     7 1573821 4.447774e-06
## 17778   Jeff Foust               severed     7 1573821 4.447774e-06
## 17779   Jeff Foust               shakeup     7 1573821 4.447774e-06
## 17780   Jeff Foust                ship’s     7 1573821 4.447774e-06
## 17781   Jeff Foust              shocking     7 1573821 4.447774e-06
## 17782   Jeff Foust               showers     7 1573821 4.447774e-06
## 17783   Jeff Foust              shrouded     7 1573821 4.447774e-06
## 17784   Jeff Foust                  sian     7 1573821 4.447774e-06
## 17785   Jeff Foust                  sick     7 1573821 4.447774e-06
## 17786   Jeff Foust                sights     7 1573821 4.447774e-06
## 17787   Jeff Foust                 singh     7 1573821 4.447774e-06
## 17788   Jeff Foust              singular     7 1573821 4.447774e-06
## 17789   Jeff Foust               sizable     7 1573821 4.447774e-06
## 17790   Jeff Foust             skvortsov     7 1573821 4.447774e-06
## 17791   Jeff Foust                skynet     7 1573821 4.447774e-06
## 17792   Jeff Foust                 slate     7 1573821 4.447774e-06
## 17793   Jeff Foust               slayton     7 1573821 4.447774e-06
## 17794   Jeff Foust               smalley     7 1573821 4.447774e-06
## 17795   Jeff Foust            smartphone     7 1573821 4.447774e-06
## 17796   Jeff Foust                 smile     7 1573821 4.447774e-06
## 17797   Jeff Foust                  soar     7 1573821 4.447774e-06
## 17798   Jeff Foust          solodovnikov     7 1573821 4.447774e-06
## 17799   Jeff Foust                  song     7 1573821 4.447774e-06
## 17800   Jeff Foust               sourced     7 1573821 4.447774e-06
## 17801   Jeff Foust               spacing     7 1573821 4.447774e-06
## 17802   Jeff Foust           spearheaded     7 1573821 4.447774e-06
## 17803   Jeff Foust         specification     7 1573821 4.447774e-06
## 17804   Jeff Foust                 spite     7 1573821 4.447774e-06
## 17805   Jeff Foust              sponable     7 1573821 4.447774e-06
## 17806   Jeff Foust              spurring     7 1573821 4.447774e-06
## 17807   Jeff Foust                   srb     7 1573821 4.447774e-06
## 17808   Jeff Foust                   ssc     7 1573821 4.447774e-06
## 17809   Jeff Foust              stanford     7 1573821 4.447774e-06
## 17810   Jeff Foust              starshot     7 1573821 4.447774e-06
## 17811   Jeff Foust               stassun     7 1573821 4.447774e-06
## 17812   Jeff Foust               statler     7 1573821 4.447774e-06
## 17813   Jeff Foust               statute     7 1573821 4.447774e-06
## 17814   Jeff Foust                stells     7 1573821 4.447774e-06
## 17815   Jeff Foust              stewards     7 1573821 4.447774e-06
## 17816   Jeff Foust            stimulated     7 1573821 4.447774e-06
## 17817   Jeff Foust              stoffler     7 1573821 4.447774e-06
## 17818   Jeff Foust                 stool     7 1573821 4.447774e-06
## 17819   Jeff Foust                 stork     7 1573821 4.447774e-06
## 17820   Jeff Foust               stowing     7 1573821 4.447774e-06
## 17821   Jeff Foust              strapped     7 1573821 4.447774e-06
## 17822   Jeff Foust              stratcom     7 1573821 4.447774e-06
## 17823   Jeff Foust              striking     7 1573821 4.447774e-06
## 17824   Jeff Foust              subsonic     7 1573821 4.447774e-06
## 17825   Jeff Foust               suffers     7 1573821 4.447774e-06
## 17826   Jeff Foust      supersynchronous     7 1573821 4.447774e-06
## 17827   Jeff Foust                 susie     7 1573821 4.447774e-06
## 17828   Jeff Foust                suzuki     7 1573821 4.447774e-06
## 17829   Jeff Foust                 swaps     7 1573821 4.447774e-06
## 17830   Jeff Foust              sweeping     7 1573821 4.447774e-06
## 17831   Jeff Foust                sydney     7 1573821 4.447774e-06
## 17832   Jeff Foust              symbolic     7 1573821 4.447774e-06
## 17833   Jeff Foust           synergistic     7 1573821 4.447774e-06
## 17834   Jeff Foust                    ta     7 1573821 4.447774e-06
## 17835   Jeff Foust              taiwan’s     7 1573821 4.447774e-06
## 17836   Jeff Foust               taiyuan     7 1573821 4.447774e-06
## 17837   Jeff Foust             takamatsu     7 1573821 4.447774e-06
## 17838   Jeff Foust                 tampa     7 1573821 4.447774e-06
## 17839   Jeff Foust                    td     7 1573821 4.447774e-06
## 17840   Jeff Foust            technician     7 1573821 4.447774e-06
## 17841   Jeff Foust              teething     7 1573821 4.447774e-06
## 17842   Jeff Foust             telegraph     7 1573821 4.447774e-06
## 17843   Jeff Foust                tennis     7 1573821 4.447774e-06
## 17844   Jeff Foust               terrier     7 1573821 4.447774e-06
## 17845   Jeff Foust                  thai     7 1573821 4.447774e-06
## 17846   Jeff Foust              there’ll     7 1573821 4.447774e-06
## 17847   Jeff Foust          thermosphere     7 1573821 4.447774e-06
## 17848   Jeff Foust                 thiel     7 1573821 4.447774e-06
## 17849   Jeff Foust                 thorp     7 1573821 4.447774e-06
## 17850   Jeff Foust                thrill     7 1573821 4.447774e-06
## 17851   Jeff Foust            throttling     7 1573821 4.447774e-06
## 17852   Jeff Foust                thrown     7 1573821 4.447774e-06
## 17853   Jeff Foust            timeliness     7 1573821 4.447774e-06
## 17854   Jeff Foust               timothy     7 1573821 4.447774e-06
## 17855   Jeff Foust               tissier     7 1573821 4.447774e-06
## 17856   Jeff Foust               titania     7 1573821 4.447774e-06
## 17857   Jeff Foust                tobias     7 1573821 4.447774e-06
## 17858   Jeff Foust           transformed     7 1573821 4.447774e-06
## 17859   Jeff Foust             transmits     7 1573821 4.447774e-06
## 17860   Jeff Foust               trident     7 1573821 4.447774e-06
## 17861   Jeff Foust              triggers     7 1573821 4.447774e-06
## 17862   Jeff Foust                  trio     7 1573821 4.447774e-06
## 17863   Jeff Foust          troubleshoot     7 1573821 4.447774e-06
## 17864   Jeff Foust             troubling     7 1573821 4.447774e-06
## 17865   Jeff Foust                   tsa     7 1573821 4.447774e-06
## 17866   Jeff Foust                tubing     7 1573821 4.447774e-06
## 17867   Jeff Foust                tuning     7 1573821 4.447774e-06
## 17868   Jeff Foust               turnkey     7 1573821 4.447774e-06
## 17869   Jeff Foust                turtle     7 1573821 4.447774e-06
## 17870   Jeff Foust                 tweak     7 1573821 4.447774e-06
## 17871   Jeff Foust          unaffordable     7 1573821 4.447774e-06
## 17872   Jeff Foust          unclassified     7 1573821 4.447774e-06
## 17873   Jeff Foust         uncomfortable     7 1573821 4.447774e-06
## 17874   Jeff Foust           unconvinced     7 1573821 4.447774e-06
## 17875   Jeff Foust               uncover     7 1573821 4.447774e-06
## 17876   Jeff Foust           underscores     7 1573821 4.447774e-06
## 17877   Jeff Foust        understandable     7 1573821 4.447774e-06
## 17878   Jeff Foust         underutilized     7 1573821 4.447774e-06
## 17879   Jeff Foust            undeterred     7 1573821 4.447774e-06
## 17880   Jeff Foust            unfettered     7 1573821 4.447774e-06
## 17881   Jeff Foust                 unite     7 1573821 4.447774e-06
## 17882   Jeff Foust             unmatched     7 1573821 4.447774e-06
## 17883   Jeff Foust                unrest     7 1573821 4.447774e-06
## 17884   Jeff Foust               untried     7 1573821 4.447774e-06
## 17885   Jeff Foust                  un’s     7 1573821 4.447774e-06
## 17886   Jeff Foust                upside     7 1573821 4.447774e-06
## 17887   Jeff Foust                urging     7 1573821 4.447774e-06
## 17888   Jeff Foust                  usos     7 1573821 4.447774e-06
## 17889   Jeff Foust                  ussf     7 1573821 4.447774e-06
## 17890   Jeff Foust                  ustr     7 1573821 4.447774e-06
## 17891   Jeff Foust              utilized     7 1573821 4.447774e-06
## 17892   Jeff Foust                  vago     7 1573821 4.447774e-06
## 17893   Jeff Foust               vanessa     7 1573821 4.447774e-06
## 17894   Jeff Foust            vegetation     7 1573821 4.447774e-06
## 17895   Jeff Foust                   ven     7 1573821 4.447774e-06
## 17896   Jeff Foust                venera     7 1573821 4.447774e-06
## 17897   Jeff Foust               verdict     7 1573821 4.447774e-06
## 17898   Jeff Foust                 verdú     7 1573821 4.447774e-06
## 17899   Jeff Foust                  vern     7 1573821 4.447774e-06
## 17900   Jeff Foust               vetting     7 1573821 4.447774e-06
## 17901   Jeff Foust                viking     7 1573821 4.447774e-06
## 17902   Jeff Foust              vikmanis     7 1573821 4.447774e-06
## 17903   Jeff Foust             violating     7 1573821 4.447774e-06
## 17904   Jeff Foust                 visas     7 1573821 4.447774e-06
## 17905   Jeff Foust                  void     7 1573821 4.447774e-06
## 17906   Jeff Foust                voyage     7 1573821 4.447774e-06
## 17907   Jeff Foust                webb’s     7 1573821 4.447774e-06
## 17908   Jeff Foust                  weir     7 1573821 4.447774e-06
## 17909   Jeff Foust               wheeler     7 1573821 4.447774e-06
## 17910   Jeff Foust               wildest     7 1573821 4.447774e-06
## 17911   Jeff Foust                wishes     7 1573821 4.447774e-06
## 17912   Jeff Foust                 woody     7 1573821 4.447774e-06
## 17913   Jeff Foust           workmanship     7 1573821 4.447774e-06
## 17914   Jeff Foust                  xgeo     7 1573821 4.447774e-06
## 17915   Jeff Foust                 xrism     7 1573821 4.447774e-06
## 17916   Jeff Foust                  yeah     7 1573821 4.447774e-06
## 17917   Jeff Foust                 yield     7 1573821 4.447774e-06
## 17918   Jeff Foust                 yoder     7 1573821 4.447774e-06
## 17919   Jeff Foust                  yozo     7 1573821 4.447774e-06
## 17920   Jeff Foust                 zamka     7 1573821 4.447774e-06
## 17921   Jeff Foust                 zhang     7 1573821 4.447774e-06
## 17922   Jeff Foust               zhurong     7 1573821 4.447774e-06
## 17923 Sandra Erwin                 117th     7  716353 9.771719e-06
## 17924 Sandra Erwin                  27vp     7  716353 9.771719e-06
## 17925 Sandra Erwin                  37th     7  716353 9.771719e-06
## 17926 Sandra Erwin                    5d     7  716353 9.771719e-06
## 17927 Sandra Erwin              aberdeen     7  716353 9.771719e-06
## 17928 Sandra Erwin                abrupt     7  716353 9.771719e-06
## 17929 Sandra Erwin        accomplishment     7  716353 9.771719e-06
## 17930 Sandra Erwin          achievements     7  716353 9.771719e-06
## 17931 Sandra Erwin                 acted     7  716353 9.771719e-06
## 17932 Sandra Erwin              aderholt     7  716353 9.771719e-06
## 17933 Sandra Erwin            advertises     7  716353 9.771719e-06
## 17934 Sandra Erwin            affiliated     7  716353 9.771719e-06
## 17935 Sandra Erwin           affiliation     7  716353 9.771719e-06
## 17936 Sandra Erwin                afraid     7  716353 9.771719e-06
## 17937 Sandra Erwin                 agent     7  716353 9.771719e-06
## 17938 Sandra Erwin              agreeing     7  716353 9.771719e-06
## 17939 Sandra Erwin                aiming     7  716353 9.771719e-06
## 17940 Sandra Erwin              airports     7  716353 9.771719e-06
## 17941 Sandra Erwin             alabama’s     7  716353 9.771719e-06
## 17942 Sandra Erwin                albeit     7  716353 9.771719e-06
## 17943 Sandra Erwin               alerted     7  716353 9.771719e-06
## 17944 Sandra Erwin             algorithm     7  716353 9.771719e-06
## 17945 Sandra Erwin                 angle     7  716353 9.771719e-06
## 17946 Sandra Erwin                   ann     7  716353 9.771719e-06
## 17947 Sandra Erwin            announcing     7  716353 9.771719e-06
## 17948 Sandra Erwin             answering     7  716353 9.771719e-06
## 17949 Sandra Erwin                arabia     7  716353 9.771719e-06
## 17950 Sandra Erwin         architectural     7  716353 9.771719e-06
## 17951 Sandra Erwin                  ariz     7  716353 9.771719e-06
## 17952 Sandra Erwin               astra’s     7  716353 9.771719e-06
## 17953 Sandra Erwin         astrodynamics     7  716353 9.771719e-06
## 17954 Sandra Erwin         astronautical     7  716353 9.771719e-06
## 17955 Sandra Erwin          astroscale’s     7  716353 9.771719e-06
## 17956 Sandra Erwin               atrophy     7  716353 9.771719e-06
## 17957 Sandra Erwin            attachable     7  716353 9.771719e-06
## 17958 Sandra Erwin             attendees     7  716353 9.771719e-06
## 17959 Sandra Erwin            attributes     7  716353 9.771719e-06
## 17960 Sandra Erwin            augmenting     7  716353 9.771719e-06
## 17961 Sandra Erwin               awaited     7  716353 9.771719e-06
## 17962 Sandra Erwin               awkward     7  716353 9.771719e-06
## 17963 Sandra Erwin              backlash     7  716353 9.771719e-06
## 17964 Sandra Erwin             balancing     7  716353 9.771719e-06
## 17965 Sandra Erwin               beaming     7  716353 9.771719e-06
## 17966 Sandra Erwin               beating     7  716353 9.771719e-06
## 17967 Sandra Erwin                behave     7  716353 9.771719e-06
## 17968 Sandra Erwin                behler     7  716353 9.771719e-06
## 17969 Sandra Erwin                belief     7  716353 9.771719e-06
## 17970 Sandra Erwin             benefited     7  716353 9.771719e-06
## 17971 Sandra Erwin              birthday     7  716353 9.771719e-06
## 17972 Sandra Erwin              blinding     7  716353 9.771719e-06
## 17973 Sandra Erwin               boosted     7  716353 9.771719e-06
## 17974 Sandra Erwin            boundaries     7  716353 9.771719e-06
## 17975 Sandra Erwin                brazil     7  716353 9.771719e-06
## 17976 Sandra Erwin               brendan     7  716353 9.771719e-06
## 17977 Sandra Erwin               bridges     7  716353 9.771719e-06
## 17978 Sandra Erwin             bridgesat     7  716353 9.771719e-06
## 17979 Sandra Erwin               bullish     7  716353 9.771719e-06
## 17980 Sandra Erwin               bullock     7  716353 9.771719e-06
## 17981 Sandra Erwin               burdens     7  716353 9.771719e-06
## 17982 Sandra Erwin            burdensome     7  716353 9.771719e-06
## 17983 Sandra Erwin                 byrne     7  716353 9.771719e-06
## 17984 Sandra Erwin          calculations     7  716353 9.771719e-06
## 17985 Sandra Erwin              caldwell     7  716353 9.771719e-06
## 17986 Sandra Erwin                  camp     7  716353 9.771719e-06
## 17987 Sandra Erwin                 camps     7  716353 9.771719e-06
## 17988 Sandra Erwin             capella’s     7  716353 9.771719e-06
## 17989 Sandra Erwin                 cared     7  716353 9.771719e-06
## 17990 Sandra Erwin                 carey     7  716353 9.771719e-06
## 17991 Sandra Erwin              carnegie     7  716353 9.771719e-06
## 17992 Sandra Erwin                   cat     7  716353 9.771719e-06
## 17993 Sandra Erwin            centennial     7  716353 9.771719e-06
## 17994 Sandra Erwin                  ceos     7  716353 9.771719e-06
## 17995 Sandra Erwin                  cert     7  716353 9.771719e-06
## 17996 Sandra Erwin            charleston     7  716353 9.771719e-06
## 17997 Sandra Erwin               charlie     7  716353 9.771719e-06
## 17998 Sandra Erwin             checklist     7  716353 9.771719e-06
## 17999 Sandra Erwin                checks     7  716353 9.771719e-06
## 18000 Sandra Erwin                 cheng     7  716353 9.771719e-06
## 18001 Sandra Erwin             christmas     7  716353 9.771719e-06
## 18002 Sandra Erwin                   cic     7  716353 9.771719e-06
## 18003 Sandra Erwin            circulated     7  716353 9.771719e-06
## 18004 Sandra Erwin              claiming     7  716353 9.771719e-06
## 18005 Sandra Erwin                 click     7  716353 9.771719e-06
## 18006 Sandra Erwin                 climb     7  716353 9.771719e-06
## 18007 Sandra Erwin                cloudy     7  716353 9.771719e-06
## 18008 Sandra Erwin                    cm     7  716353 9.771719e-06
## 18009 Sandra Erwin               coastal     7  716353 9.771719e-06
## 18010 Sandra Erwin              coherent     7  716353 9.771719e-06
## 18011 Sandra Erwin              cohesive     7  716353 9.771719e-06
## 18012 Sandra Erwin           collections     7  716353 9.771719e-06
## 18013 Sandra Erwin                  comm     7  716353 9.771719e-06
## 18014 Sandra Erwin            commerce’s     7  716353 9.771719e-06
## 18015 Sandra Erwin         commissioning     7  716353 9.771719e-06
## 18016 Sandra Erwin            committing     7  716353 9.771719e-06
## 18017 Sandra Erwin       commoditization     7  716353 9.771719e-06
## 18018 Sandra Erwin               compare     7  716353 9.771719e-06
## 18019 Sandra Erwin           complicates     7  716353 9.771719e-06
## 18020 Sandra Erwin               concert     7  716353 9.771719e-06
## 18021 Sandra Erwin          concurrently     7  716353 9.771719e-06
## 18022 Sandra Erwin             condemned     7  716353 9.771719e-06
## 18023 Sandra Erwin           confederate     7  716353 9.771719e-06
## 18024 Sandra Erwin           conferences     7  716353 9.771719e-06
## 18025 Sandra Erwin               confers     7  716353 9.771719e-06
## 18026 Sandra Erwin               confuse     7  716353 9.771719e-06
## 18027 Sandra Erwin                  cons     7  716353 9.771719e-06
## 18028 Sandra Erwin          consortium’s     7  716353 9.771719e-06
## 18029 Sandra Erwin               consume     7  716353 9.771719e-06
## 18030 Sandra Erwin            containers     7  716353 9.771719e-06
## 18031 Sandra Erwin          contributing     7  716353 9.771719e-06
## 18032 Sandra Erwin          contribution     7  716353 9.771719e-06
## 18033 Sandra Erwin            convention     7  716353 9.771719e-06
## 18034 Sandra Erwin           convergence     7  716353 9.771719e-06
## 18035 Sandra Erwin              covering     7  716353 9.771719e-06
## 18036 Sandra Erwin               coveted     7  716353 9.771719e-06
## 18037 Sandra Erwin                 craft     7  716353 9.771719e-06
## 18038 Sandra Erwin                 crain     7  716353 9.771719e-06
## 18039 Sandra Erwin            creativity     7  716353 9.771719e-06
## 18040 Sandra Erwin                 crowd     7  716353 9.771719e-06
## 18041 Sandra Erwin                  csba     7  716353 9.771719e-06
## 18042 Sandra Erwin              cultures     7  716353 9.771719e-06
## 18043 Sandra Erwin               daniell     7  716353 9.771719e-06
## 18044 Sandra Erwin              darkness     7  716353 9.771719e-06
## 18045 Sandra Erwin                  debt     7  716353 9.771719e-06
## 18046 Sandra Erwin         decentralized     7  716353 9.771719e-06
## 18047 Sandra Erwin       decommissioning     7  716353 9.771719e-06
## 18048 Sandra Erwin           defensenews     7  716353 9.771719e-06
## 18049 Sandra Erwin                deluge     7  716353 9.771719e-06
## 18050 Sandra Erwin          demonstrator     7  716353 9.771719e-06
## 18051 Sandra Erwin                depart     7  716353 9.771719e-06
## 18052 Sandra Erwin            designates     7  716353 9.771719e-06
## 18053 Sandra Erwin          destinations     7  716353 9.771719e-06
## 18054 Sandra Erwin            detachment     7  716353 9.771719e-06
## 18055 Sandra Erwin             detailing     7  716353 9.771719e-06
## 18056 Sandra Erwin           detrimental     7  716353 9.771719e-06
## 18057 Sandra Erwin              deverell     7  716353 9.771719e-06
## 18058 Sandra Erwin               devoted     7  716353 9.771719e-06
## 18059 Sandra Erwin            difficulty     7  716353 9.771719e-06
## 18060 Sandra Erwin        digitalglobe’s     7  716353 9.771719e-06
## 18061 Sandra Erwin            directions     7  716353 9.771719e-06
## 18062 Sandra Erwin             disabling     7  716353 9.771719e-06
## 18063 Sandra Erwin        disappointment     7  716353 9.771719e-06
## 18064 Sandra Erwin            discretion     7  716353 9.771719e-06
## 18065 Sandra Erwin               distant     7  716353 9.771719e-06
## 18066 Sandra Erwin                   dla     7  716353 9.771719e-06
## 18067 Sandra Erwin                doable     7  716353 9.771719e-06
## 18068 Sandra Erwin                 draws     7  716353 9.771719e-06
## 18069 Sandra Erwin                 dried     7  716353 9.771719e-06
## 18070 Sandra Erwin             droneship     7  716353 9.771719e-06
## 18071 Sandra Erwin                   dsp     7  716353 9.771719e-06
## 18072 Sandra Erwin                  earn     7  716353 9.771719e-06
## 18073 Sandra Erwin               echoing     7  716353 9.771719e-06
## 18074 Sandra Erwin           educational     7  716353 9.771719e-06
## 18075 Sandra Erwin                edward     7  716353 9.771719e-06
## 18076 Sandra Erwin                   egd     7  716353 9.771719e-06
## 18077 Sandra Erwin                eighth     7  716353 9.771719e-06
## 18078 Sandra Erwin           electricity     7  716353 9.771719e-06
## 18079 Sandra Erwin             elizabeth     7  716353 9.771719e-06
## 18080 Sandra Erwin                 elzea     7  716353 9.771719e-06
## 18081 Sandra Erwin              embarked     7  716353 9.771719e-06
## 18082 Sandra Erwin              emitters     7  716353 9.771719e-06
## 18083 Sandra Erwin                    en     7  716353 9.771719e-06
## 18084 Sandra Erwin           encountered     7  716353 9.771719e-06
## 18085 Sandra Erwin              engine’s     7  716353 9.771719e-06
## 18086 Sandra Erwin                enjoys     7  716353 9.771719e-06
## 18087 Sandra Erwin                  epic     7  716353 9.771719e-06
## 18088 Sandra Erwin                eroded     7  716353 9.771719e-06
## 18089 Sandra Erwin                estate     7  716353 9.771719e-06
## 18090 Sandra Erwin             excellent     7  716353 9.771719e-06
## 18091 Sandra Erwin           existential     7  716353 9.771719e-06
## 18092 Sandra Erwin              expended     7  716353 9.771719e-06
## 18093 Sandra Erwin           experiences     7  716353 9.771719e-06
## 18094 Sandra Erwin               expired     7  716353 9.771719e-06
## 18095 Sandra Erwin              explored     7  716353 9.771719e-06
## 18096 Sandra Erwin            expressing     7  716353 9.771719e-06
## 18097 Sandra Erwin            extraction     7  716353 9.771719e-06
## 18098 Sandra Erwin           fabrication     7  716353 9.771719e-06
## 18099 Sandra Erwin              factions     7  716353 9.771719e-06
## 18100 Sandra Erwin              fairness     7  716353 9.771719e-06
## 18101 Sandra Erwin              families     7  716353 9.771719e-06
## 18102 Sandra Erwin                 fault     7  716353 9.771719e-06
## 18103 Sandra Erwin                fetrow     7  716353 9.771719e-06
## 18104 Sandra Erwin            fiaschetti     7  716353 9.771719e-06
## 18105 Sandra Erwin               fiction     7  716353 9.771719e-06
## 18106 Sandra Erwin              filecoin     7  716353 9.771719e-06
## 18107 Sandra Erwin               filings     7  716353 9.771719e-06
## 18108 Sandra Erwin                fisher     7  716353 9.771719e-06
## 18109 Sandra Erwin               fission     7  716353 9.771719e-06
## 18110 Sandra Erwin                  flip     7  716353 9.771719e-06
## 18111 Sandra Erwin                 fluid     7  716353 9.771719e-06
## 18112 Sandra Erwin                   foc     7  716353 9.771719e-06
## 18113 Sandra Erwin                  foci     7  716353 9.771719e-06
## 18114 Sandra Erwin              foothold     7  716353 9.771719e-06
## 18115 Sandra Erwin               foresee     7  716353 9.771719e-06
## 18116 Sandra Erwin              foresees     7  716353 9.771719e-06
## 18117 Sandra Erwin                forget     7  716353 9.771719e-06
## 18118 Sandra Erwin               forging     7  716353 9.771719e-06
## 18119 Sandra Erwin                freese     7  716353 9.771719e-06
## 18120 Sandra Erwin              friction     7  716353 9.771719e-06
## 18121 Sandra Erwin             galactica     7  716353 9.771719e-06
## 18122 Sandra Erwin             gallagher     7  716353 9.771719e-06
## 18123 Sandra Erwin              gallucci     7  716353 9.771719e-06
## 18124 Sandra Erwin               garrett     7  716353 9.771719e-06
## 18125 Sandra Erwin            gatherings     7  716353 9.771719e-06
## 18126 Sandra Erwin                 gauge     7  716353 9.771719e-06
## 18127 Sandra Erwin                geared     7  716353 9.771719e-06
## 18128 Sandra Erwin               gleason     7  716353 9.771719e-06
## 18129 Sandra Erwin               glimpse     7  716353 9.771719e-06
## 18130 Sandra Erwin                   gop     7  716353 9.771719e-06
## 18131 Sandra Erwin                govsat     7  716353 9.771719e-06
## 18132 Sandra Erwin                 grabs     7  716353 9.771719e-06
## 18133 Sandra Erwin              grimmett     7  716353 9.771719e-06
## 18134 Sandra Erwin        groundbreaking     7  716353 9.771719e-06
## 18135 Sandra Erwin                   h.r     7  716353 9.771719e-06
## 18136 Sandra Erwin             hardening     7  716353 9.771719e-06
## 18137 Sandra Erwin               harpoon     7  716353 9.771719e-06
## 18138 Sandra Erwin              hastings     7  716353 9.771719e-06
## 18139 Sandra Erwin            hawkeye360     7  716353 9.771719e-06
## 18140 Sandra Erwin                hayden     7  716353 9.771719e-06
## 18141 Sandra Erwin               heading     7  716353 9.771719e-06
## 18142 Sandra Erwin                  heck     7  716353 9.771719e-06
## 18143 Sandra Erwin                 hedge     7  716353 9.771719e-06
## 18144 Sandra Erwin              hegewald     7  716353 9.771719e-06
## 18145 Sandra Erwin                 heidi     7  716353 9.771719e-06
## 18146 Sandra Erwin               helmets     7  716353 9.771719e-06
## 18147 Sandra Erwin            hemisphere     7  716353 9.771719e-06
## 18148 Sandra Erwin               hendrix     7  716353 9.771719e-06
## 18149 Sandra Erwin               highnam     7  716353 9.771719e-06
## 18150 Sandra Erwin               highway     7  716353 9.771719e-06
## 18151 Sandra Erwin                hinder     7  716353 9.771719e-06
## 18152 Sandra Erwin               holston     7  716353 9.771719e-06
## 18153 Sandra Erwin              hydrosat     7  716353 9.771719e-06
## 18154 Sandra Erwin                  hype     7  716353 9.771719e-06
## 18155 Sandra Erwin               hyten’s     7  716353 9.771719e-06
## 18156 Sandra Erwin              ignatius     7  716353 9.771719e-06
## 18157 Sandra Erwin               igniter     7  716353 9.771719e-06
## 18158 Sandra Erwin                   iii     7  716353 9.771719e-06
## 18159 Sandra Erwin            illustrate     7  716353 9.771719e-06
## 18160 Sandra Erwin           imperatives     7  716353 9.771719e-06
## 18161 Sandra Erwin               imports     7  716353 9.771719e-06
## 18162 Sandra Erwin             inception     7  716353 9.771719e-06
## 18163 Sandra Erwin             incidents     7  716353 9.771719e-06
## 18164 Sandra Erwin             inclusive     7  716353 9.771719e-06
## 18165 Sandra Erwin       inconsistencies     7  716353 9.771719e-06
## 18166 Sandra Erwin            increments     7  716353 9.771719e-06
## 18167 Sandra Erwin            indecision     7  716353 9.771719e-06
## 18168 Sandra Erwin           inefficient     7  716353 9.771719e-06
## 18169 Sandra Erwin               infancy     7  716353 9.771719e-06
## 18170 Sandra Erwin              inherent     7  716353 9.771719e-06
## 18171 Sandra Erwin             inherited     7  716353 9.771719e-06
## 18172 Sandra Erwin             inserting     7  716353 9.771719e-06
## 18173 Sandra Erwin               insider     7  716353 9.771719e-06
## 18174 Sandra Erwin             insisting     7  716353 9.771719e-06
## 18175 Sandra Erwin          instructions     7  716353 9.771719e-06
## 18176 Sandra Erwin                 intel     7  716353 9.771719e-06
## 18177 Sandra Erwin             interpret     7  716353 9.771719e-06
## 18178 Sandra Erwin             intervene     7  716353 9.771719e-06
## 18179 Sandra Erwin             invention     7  716353 9.771719e-06
## 18180 Sandra Erwin             inversion     7  716353 9.771719e-06
## 18181 Sandra Erwin          investigator     7  716353 9.771719e-06
## 18182 Sandra Erwin                  ipfs     7  716353 9.771719e-06
## 18183 Sandra Erwin                ironed     7  716353 9.771719e-06
## 18184 Sandra Erwin                  isam     7  716353 9.771719e-06
## 18185 Sandra Erwin               islamic     7  716353 9.771719e-06
## 18186 Sandra Erwin                  jpss     7  716353 9.771719e-06
## 18187 Sandra Erwin                    jt     7  716353 9.771719e-06
## 18188 Sandra Erwin                junior     7  716353 9.771719e-06
## 18189 Sandra Erwin             kilometer     7  716353 9.771719e-06
## 18190 Sandra Erwin              kimberly     7  716353 9.771719e-06
## 18191 Sandra Erwin             kingdom’s     7  716353 9.771719e-06
## 18192 Sandra Erwin                 klein     7  716353 9.771719e-06
## 18193 Sandra Erwin                lacked     7  716353 9.771719e-06
## 18194 Sandra Erwin               landsat     7  716353 9.771719e-06
## 18195 Sandra Erwin                 lanes     7  716353 9.771719e-06
## 18196 Sandra Erwin                 laura     7  716353 9.771719e-06
## 18197 Sandra Erwin                lawson     7  716353 9.771719e-06
## 18198 Sandra Erwin               legions     7  716353 9.771719e-06
## 18199 Sandra Erwin               lengthy     7  716353 9.771719e-06
## 18200 Sandra Erwin               lengyel     7  716353 9.771719e-06
## 18201 Sandra Erwin             lethality     7  716353 9.771719e-06
## 18202 Sandra Erwin                  lexi     7  716353 9.771719e-06
## 18203 Sandra Erwin              lifeline     7  716353 9.771719e-06
## 18204 Sandra Erwin             lifetimes     7  716353 9.771719e-06
## 18205 Sandra Erwin              lighting     7  716353 9.771719e-06
## 18206 Sandra Erwin            likelihood     7  716353 9.771719e-06
## 18207 Sandra Erwin                 lined     7  716353 9.771719e-06
## 18208 Sandra Erwin                  load     7  716353 9.771719e-06
## 18209 Sandra Erwin               logical     7  716353 9.771719e-06
## 18210 Sandra Erwin            logistical     7  716353 9.771719e-06
## 18211 Sandra Erwin                  lynn     7  716353 9.771719e-06
## 18212 Sandra Erwin             magnitude     7  716353 9.771719e-06
## 18213 Sandra Erwin            manifested     7  716353 9.771719e-06
## 18214 Sandra Erwin               manning     7  716353 9.771719e-06
## 18215 Sandra Erwin                mapped     7  716353 9.771719e-06
## 18216 Sandra Erwin                marcus     7  716353 9.771719e-06
## 18217 Sandra Erwin            martindale     7  716353 9.771719e-06
## 18218 Sandra Erwin                  mbmm     7  716353 9.771719e-06
## 18219 Sandra Erwin                mcginn     7  716353 9.771719e-06
## 18220 Sandra Erwin               mcsally     7  716353 9.771719e-06
## 18221 Sandra Erwin             measuring     7  716353 9.771719e-06
## 18222 Sandra Erwin            mechanical     7  716353 9.771719e-06
## 18223 Sandra Erwin              medicine     7  716353 9.771719e-06
## 18224 Sandra Erwin                melone     7  716353 9.771719e-06
## 18225 Sandra Erwin                 mercy     7  716353 9.771719e-06
## 18226 Sandra Erwin             mewbourne     7  716353 9.771719e-06
## 18227 Sandra Erwin                   mfp     7  716353 9.771719e-06
## 18228 Sandra Erwin                  mine     7  716353 9.771719e-06
## 18229 Sandra Erwin             minimizes     7  716353 9.771719e-06
## 18230 Sandra Erwin                 mod’s     7  716353 9.771719e-06
## 18231 Sandra Erwin               moeller     7  716353 9.771719e-06
## 18232 Sandra Erwin                  mold     7  716353 9.771719e-06
## 18233 Sandra Erwin                  mood     7  716353 9.771719e-06
## 18234 Sandra Erwin                morris     7  716353 9.771719e-06
## 18235 Sandra Erwin              motivate     7  716353 9.771719e-06
## 18236 Sandra Erwin            motivation     7  716353 9.771719e-06
## 18237 Sandra Erwin                   mtc     7  716353 9.771719e-06
## 18238 Sandra Erwin         multispectral     7  716353 9.771719e-06
## 18239 Sandra Erwin               murdock     7  716353 9.771719e-06
## 18240 Sandra Erwin                muscle     7  716353 9.771719e-06
## 18241 Sandra Erwin              narrowed     7  716353 9.771719e-06
## 18242 Sandra Erwin                   neb     7  716353 9.771719e-06
## 18243 Sandra Erwin           negotiation     7  716353 9.771719e-06
## 18244 Sandra Erwin           nonpartisan     7  716353 9.771719e-06
## 18245 Sandra Erwin             norwegian     7  716353 9.771719e-06
## 18246 Sandra Erwin                 nsttc     7  716353 9.771719e-06
## 18247 Sandra Erwin                  ntia     7  716353 9.771719e-06
## 18248 Sandra Erwin            numerica’s     7  716353 9.771719e-06
## 18249 Sandra Erwin               nurture     7  716353 9.771719e-06
## 18250 Sandra Erwin                  oath     7  716353 9.771719e-06
## 18251 Sandra Erwin              offerors     7  716353 9.771719e-06
## 18252 Sandra Erwin                   oig     7  716353 9.771719e-06
## 18253 Sandra Erwin                 olson     7  716353 9.771719e-06
## 18254 Sandra Erwin               organic     7  716353 9.771719e-06
## 18255 Sandra Erwin             organizes     7  716353 9.771719e-06
## 18256 Sandra Erwin               ostrove     7  716353 9.771719e-06
## 18257 Sandra Erwin              outbreak     7  716353 9.771719e-06
## 18258 Sandra Erwin              outcomes     7  716353 9.771719e-06
## 18259 Sandra Erwin               outline     7  716353 9.771719e-06
## 18260 Sandra Erwin              outlined     7  716353 9.771719e-06
## 18261 Sandra Erwin               outpost     7  716353 9.771719e-06
## 18262 Sandra Erwin              outright     7  716353 9.771719e-06
## 18263 Sandra Erwin           outsourcing     7  716353 9.771719e-06
## 18264 Sandra Erwin           outstanding     7  716353 9.771719e-06
## 18265 Sandra Erwin           overwhelmed     7  716353 9.771719e-06
## 18266 Sandra Erwin                 pacom     7  716353 9.771719e-06
## 18267 Sandra Erwin                 pains     7  716353 9.771719e-06
## 18268 Sandra Erwin                 paris     7  716353 9.771719e-06
## 18269 Sandra Erwin                  park     7  716353 9.771719e-06
## 18270 Sandra Erwin                parker     7  716353 9.771719e-06
## 18271 Sandra Erwin               partial     7  716353 9.771719e-06
## 18272 Sandra Erwin             peninsula     7  716353 9.771719e-06
## 18273 Sandra Erwin                  peos     7  716353 9.771719e-06
## 18274 Sandra Erwin             peraton’s     7  716353 9.771719e-06
## 18275 Sandra Erwin          persistently     7  716353 9.771719e-06
## 18276 Sandra Erwin              peruvian     7  716353 9.771719e-06
## 18277 Sandra Erwin                philip     7  716353 9.771719e-06
## 18278 Sandra Erwin               pillars     7  716353 9.771719e-06
## 18279 Sandra Erwin                 piped     7  716353 9.771719e-06
## 18280 Sandra Erwin                 pirpl     7  716353 9.771719e-06
## 18281 Sandra Erwin              pituffik     7  716353 9.771719e-06
## 18282 Sandra Erwin                pixels     7  716353 9.771719e-06
## 18283 Sandra Erwin                   pla     7  716353 9.771719e-06
## 18284 Sandra Erwin                plants     7  716353 9.771719e-06
## 18285 Sandra Erwin                  pleo     7  716353 9.771719e-06
## 18286 Sandra Erwin               pockets     7  716353 9.771719e-06
## 18287 Sandra Erwin           politicians     7  716353 9.771719e-06
## 18288 Sandra Erwin            populating     7  716353 9.771719e-06
## 18289 Sandra Erwin                potter     7  716353 9.771719e-06
## 18290 Sandra Erwin                  pour     7  716353 9.771719e-06
## 18291 Sandra Erwin                poured     7  716353 9.771719e-06
## 18292 Sandra Erwin            preference     7  716353 9.771719e-06
## 18293 Sandra Erwin            producible     7  716353 9.771719e-06
## 18294 Sandra Erwin           progressive     7  716353 9.771719e-06
## 18295 Sandra Erwin              prohibit     7  716353 9.771719e-06
## 18296 Sandra Erwin              promotes     7  716353 9.771719e-06
## 18297 Sandra Erwin            promotions     7  716353 9.771719e-06
## 18298 Sandra Erwin                  prop     7  716353 9.771719e-06
## 18299 Sandra Erwin           propagation     7  716353 9.771719e-06
## 18300 Sandra Erwin            properties     7  716353 9.771719e-06
## 18301 Sandra Erwin          proportional     7  716353 9.771719e-06
## 18302 Sandra Erwin                  pros     7  716353 9.771719e-06
## 18303 Sandra Erwin            prototyped     7  716353 9.771719e-06
## 18304 Sandra Erwin                 proxy     7  716353 9.771719e-06
## 18305 Sandra Erwin              public’s     7  716353 9.771719e-06
## 18306 Sandra Erwin                 putin     7  716353 9.771719e-06
## 18307 Sandra Erwin               puzzled     7  716353 9.771719e-06
## 18308 Sandra Erwin               qinetiq     7  716353 9.771719e-06
## 18309 Sandra Erwin               queries     7  716353 9.771719e-06
## 18310 Sandra Erwin               quicker     7  716353 9.771719e-06
## 18311 Sandra Erwin                  rasr     7  716353 9.771719e-06
## 18312 Sandra Erwin                rating     7  716353 9.771719e-06
## 18313 Sandra Erwin              reactors     7  716353 9.771719e-06
## 18314 Sandra Erwin             realizing     7  716353 9.771719e-06
## 18315 Sandra Erwin               rebuild     7  716353 9.771719e-06
## 18316 Sandra Erwin          recapitalize     7  716353 9.771719e-06
## 18317 Sandra Erwin              regarded     7  716353 9.771719e-06
## 18318 Sandra Erwin              releases     7  716353 9.771719e-06
## 18319 Sandra Erwin         replenishment     7  716353 9.771719e-06
## 18320 Sandra Erwin        representation     7  716353 9.771719e-06
## 18321 Sandra Erwin             repurpose     7  716353 9.771719e-06
## 18322 Sandra Erwin              residual     7  716353 9.771719e-06
## 18323 Sandra Erwin             resolving     7  716353 9.771719e-06
## 18324 Sandra Erwin           revelations     7  716353 9.771719e-06
## 18325 Sandra Erwin                 rigor     7  716353 9.771719e-06
## 18326 Sandra Erwin                 robin     7  716353 9.771719e-06
## 18327 Sandra Erwin                 roots     7  716353 9.771719e-06
## 18328 Sandra Erwin               roper’s     7  716353 9.771719e-06
## 18329 Sandra Erwin           rousmaniere     7  716353 9.771719e-06
## 18330 Sandra Erwin                 rover     7  716353 9.771719e-06
## 18331 Sandra Erwin                  rslp     7  716353 9.771719e-06
## 18332 Sandra Erwin              rumbaugh     7  716353 9.771719e-06
## 18333 Sandra Erwin                   sae     7  716353 9.771719e-06
## 18334 Sandra Erwin                  sapp     7  716353 9.771719e-06
## 18335 Sandra Erwin                 sauce     7  716353 9.771719e-06
## 18336 Sandra Erwin                 saves     7  716353 9.771719e-06
## 18337 Sandra Erwin                saving     7  716353 9.771719e-06
## 18338 Sandra Erwin                   sba     7  716353 9.771719e-06
## 18339 Sandra Erwin                  sbas     7  716353 9.771719e-06
## 18340 Sandra Erwin               schmidt     7  716353 9.771719e-06
## 18341 Sandra Erwin              scholars     7  716353 9.771719e-06
## 18342 Sandra Erwin             schweizer     7  716353 9.771719e-06
## 18343 Sandra Erwin               scratch     7  716353 9.771719e-06
## 18344 Sandra Erwin                scrubs     7  716353 9.771719e-06
## 18345 Sandra Erwin             secretive     7  716353 9.771719e-06
## 18346 Sandra Erwin                 seeme     7  716353 9.771719e-06
## 18347 Sandra Erwin             sentiment     7  716353 9.771719e-06
## 18348 Sandra Erwin              sentinel     7  716353 9.771719e-06
## 18349 Sandra Erwin         sequestration     7  716353 9.771719e-06
## 18350 Sandra Erwin              serviced     7  716353 9.771719e-06
## 18351 Sandra Erwin              sessions     7  716353 9.771719e-06
## 18352 Sandra Erwin                sexual     7  716353 9.771719e-06
## 18353 Sandra Erwin                  shah     7  716353 9.771719e-06
## 18354 Sandra Erwin               shaking     7  716353 9.771719e-06
## 18355 Sandra Erwin                  shea     7  716353 9.771719e-06
## 18356 Sandra Erwin               sheehan     7  716353 9.771719e-06
## 18357 Sandra Erwin              sherwood     7  716353 9.771719e-06
## 18358 Sandra Erwin                 she’s     7  716353 9.771719e-06
## 18359 Sandra Erwin               shields     7  716353 9.771719e-06
## 18360 Sandra Erwin               shocked     7  716353 9.771719e-06
## 18361 Sandra Erwin               shoebox     7  716353 9.771719e-06
## 18362 Sandra Erwin            shortfalls     7  716353 9.771719e-06
## 18363 Sandra Erwin                 singh     7  716353 9.771719e-06
## 18364 Sandra Erwin                  slab     7  716353 9.771719e-06
## 18365 Sandra Erwin               slammed     7  716353 9.771719e-06
## 18366 Sandra Erwin               smartly     7  716353 9.771719e-06
## 18367 Sandra Erwin            smartphone     7  716353 9.771719e-06
## 18368 Sandra Erwin                  soco     7  716353 9.771719e-06
## 18369 Sandra Erwin              solicits     7  716353 9.771719e-06
## 18370 Sandra Erwin                 sonty     7  716353 9.771719e-06
## 18371 Sandra Erwin              spainsat     7  716353 9.771719e-06
## 18372 Sandra Erwin           spideroak’s     7  716353 9.771719e-06
## 18373 Sandra Erwin                spirit     7  716353 9.771719e-06
## 18374 Sandra Erwin              sponsors     7  716353 9.771719e-06
## 18375 Sandra Erwin               sputnik     7  716353 9.771719e-06
## 18376 Sandra Erwin                   srm     7  716353 9.771719e-06
## 18377 Sandra Erwin                   srt     7  716353 9.771719e-06
## 18378 Sandra Erwin               stacked     7  716353 9.771719e-06
## 18379 Sandra Erwin                staged     7  716353 9.771719e-06
## 18380 Sandra Erwin          standardized     7  716353 9.771719e-06
## 18381 Sandra Erwin               standby     7  716353 9.771719e-06
## 18382 Sandra Erwin            starlink’s     7  716353 9.771719e-06
## 18383 Sandra Erwin              statutes     7  716353 9.771719e-06
## 18384 Sandra Erwin              steering     7  716353 9.771719e-06
## 18385 Sandra Erwin               stellar     7  716353 9.771719e-06
## 18386 Sandra Erwin              stoffler     7  716353 9.771719e-06
## 18387 Sandra Erwin               stories     7  716353 9.771719e-06
## 18388 Sandra Erwin          streamlining     7  716353 9.771719e-06
## 18389 Sandra Erwin           strengthens     7  716353 9.771719e-06
## 18390 Sandra Erwin            subsequent     7  716353 9.771719e-06
## 18391 Sandra Erwin          subsequently     7  716353 9.771719e-06
## 18392 Sandra Erwin              succeeds     7  716353 9.771719e-06
## 18393 Sandra Erwin               suspect     7  716353 9.771719e-06
## 18394 Sandra Erwin           switzerland     7  716353 9.771719e-06
## 18395 Sandra Erwin       synchronization     7  716353 9.771719e-06
## 18396 Sandra Erwin              tackling     7  716353 9.771719e-06
## 18397 Sandra Erwin                tailor     7  716353 9.771719e-06
## 18398 Sandra Erwin                  tang     7  716353 9.771719e-06
## 18399 Sandra Erwin             teammates     7  716353 9.771719e-06
## 18400 Sandra Erwin               tethers     7  716353 9.771719e-06
## 18401 Sandra Erwin         theoretically     7  716353 9.771719e-06
## 18402 Sandra Erwin                thrive     7  716353 9.771719e-06
## 18403 Sandra Erwin              throwing     7  716353 9.771719e-06
## 18404 Sandra Erwin               ticking     7  716353 9.771719e-06
## 18405 Sandra Erwin               tipping     7  716353 9.771719e-06
## 18406 Sandra Erwin                 tommy     7  716353 9.771719e-06
## 18407 Sandra Erwin               tooling     7  716353 9.771719e-06
## 18408 Sandra Erwin                toured     7  716353 9.771719e-06
## 18409 Sandra Erwin               tourism     7  716353 9.771719e-06
## 18410 Sandra Erwin        transformative     7  716353 9.771719e-06
## 18411 Sandra Erwin            translated     7  716353 9.771719e-06
## 18412 Sandra Erwin          transponders     7  716353 9.771719e-06
## 18413 Sandra Erwin         transportable     7  716353 9.771719e-06
## 18414 Sandra Erwin          transporting     7  716353 9.771719e-06
## 18415 Sandra Erwin              traveled     7  716353 9.771719e-06
## 18416 Sandra Erwin                 treat     7  716353 9.771719e-06
## 18417 Sandra Erwin          tremendously     7  716353 9.771719e-06
## 18418 Sandra Erwin                 truck     7  716353 9.771719e-06
## 18419 Sandra Erwin              trustees     7  716353 9.771719e-06
## 18420 Sandra Erwin                  uavs     7  716353 9.771719e-06
## 18421 Sandra Erwin           unavailable     7  716353 9.771719e-06
## 18422 Sandra Erwin             unchanged     7  716353 9.771719e-06
## 18423 Sandra Erwin          unexpectedly     7  716353 9.771719e-06
## 18424 Sandra Erwin               unhappy     7  716353 9.771719e-06
## 18425 Sandra Erwin              unproven     7  716353 9.771719e-06
## 18426 Sandra Erwin             unrelated     7  716353 9.771719e-06
## 18427 Sandra Erwin          unsuccessful     7  716353 9.771719e-06
## 18428 Sandra Erwin              uploaded     7  716353 9.771719e-06
## 18429 Sandra Erwin              velocity     7  716353 9.771719e-06
## 18430 Sandra Erwin                 venue     7  716353 9.771719e-06
## 18431 Sandra Erwin              visiting     7  716353 9.771719e-06
## 18432 Sandra Erwin                visner     7  716353 9.771719e-06
## 18433 Sandra Erwin               waivers     7  716353 9.771719e-06
## 18434 Sandra Erwin             wallinger     7  716353 9.771719e-06
## 18435 Sandra Erwin                 waltz     7  716353 9.771719e-06
## 18436 Sandra Erwin            weaknesses     7  716353 9.771719e-06
## 18437 Sandra Erwin         weaponization     7  716353 9.771719e-06
## 18438 Sandra Erwin                  webb     7  716353 9.771719e-06
## 18439 Sandra Erwin                weiher     7  716353 9.771719e-06
## 18440 Sandra Erwin              welcomed     7  716353 9.771719e-06
## 18441 Sandra Erwin                wisely     7  716353 9.771719e-06
## 18442 Sandra Erwin                 wolfe     7  716353 9.771719e-06
## 18443 Sandra Erwin                xplore     7  716353 9.771719e-06
## 18444   Jeff Foust                   19c     6 1573821 3.812378e-06
## 18445   Jeff Foust                    1u     6 1573821 3.812378e-06
## 18446   Jeff Foust                   20s     6 1573821 3.812378e-06
## 18447   Jeff Foust                    3e     6 1573821 3.812378e-06
## 18448   Jeff Foust                abroad     6 1573821 3.812378e-06
## 18449   Jeff Foust              absorbed     6 1573821 3.812378e-06
## 18450   Jeff Foust              abstract     6 1573821 3.812378e-06
## 18451   Jeff Foust                acadia     6 1573821 3.812378e-06
## 18452   Jeff Foust            accidental     6 1573821 3.812378e-06
## 18453   Jeff Foust            accumulate     6 1573821 3.812378e-06
## 18454   Jeff Foust       acknowledgement     6 1573821 3.812378e-06
## 18455   Jeff Foust              actuator     6 1573821 3.812378e-06
## 18456   Jeff Foust             actuators     6 1573821 3.812378e-06
## 18457   Jeff Foust            adaptation     6 1573821 3.812378e-06
## 18458   Jeff Foust                adcole     6 1573821 3.812378e-06
## 18459   Jeff Foust            admittedly     6 1573821 3.812378e-06
## 18460   Jeff Foust                adrian     6 1573821 3.812378e-06
## 18461   Jeff Foust             adversary     6 1573821 3.812378e-06
## 18462   Jeff Foust                 aevum     6 1573821 3.812378e-06
## 18463   Jeff Foust               airbags     6 1573821 3.812378e-06
## 18464   Jeff Foust             airplanes     6 1573821 3.812378e-06
## 18465   Jeff Foust                  ajit     6 1573821 3.812378e-06
## 18466   Jeff Foust                alarms     6 1573821 3.812378e-06
## 18467   Jeff Foust             alliances     6 1573821 3.812378e-06
## 18468   Jeff Foust                 alloy     6 1573821 3.812378e-06
## 18469   Jeff Foust             ambiguity     6 1573821 3.812378e-06
## 18470   Jeff Foust                 andré     6 1573821 3.812378e-06
## 18471   Jeff Foust             anecdotal     6 1573821 3.812378e-06
## 18472   Jeff Foust                 angry     6 1573821 3.812378e-06
## 18473   Jeff Foust                 annex     6 1573821 3.812378e-06
## 18474   Jeff Foust              anousheh     6 1573821 3.812378e-06
## 18475   Jeff Foust                  apac     6 1573821 3.812378e-06
## 18476   Jeff Foust                apples     6 1573821 3.812378e-06
## 18477   Jeff Foust             applicant     6 1573821 3.812378e-06
## 18478   Jeff Foust                apstar     6 1573821 3.812378e-06
## 18479   Jeff Foust                armour     6 1573821 3.812378e-06
## 18480   Jeff Foust              artemyev     6 1573821 3.812378e-06
## 18481   Jeff Foust             astrotech     6 1573821 3.812378e-06
## 18482   Jeff Foust              auditors     6 1573821 3.812378e-06
## 18483   Jeff Foust         authoritative     6 1573821 3.812378e-06
## 18484   Jeff Foust             averaging     6 1573821 3.812378e-06
## 18485   Jeff Foust               awkward     6 1573821 3.812378e-06
## 18486   Jeff Foust                   axa     6 1573821 3.812378e-06
## 18487   Jeff Foust                 badly     6 1573821 3.812378e-06
## 18488   Jeff Foust               balaram     6 1573821 3.812378e-06
## 18489   Jeff Foust             barcelona     6 1573821 3.812378e-06
## 18490   Jeff Foust                  bare     6 1573821 3.812378e-06
## 18491   Jeff Foust                barker     6 1573821 3.812378e-06
## 18492   Jeff Foust                barred     6 1573821 3.812378e-06
## 18493   Jeff Foust                barrel     6 1573821 3.812378e-06
## 18494   Jeff Foust                  bars     6 1573821 3.812378e-06
## 18495   Jeff Foust               bassler     6 1573821 3.812378e-06
## 18496   Jeff Foust                   bds     6 1573821 3.812378e-06
## 18497   Jeff Foust                 beads     6 1573821 3.812378e-06
## 18498   Jeff Foust                 beast     6 1573821 3.812378e-06
## 18499   Jeff Foust              bednarek     6 1573821 3.812378e-06
## 18500   Jeff Foust               behaved     6 1573821 3.812378e-06
## 18501   Jeff Foust               belongs     6 1573821 3.812378e-06
## 18502   Jeff Foust            benefitted     6 1573821 3.812378e-06
## 18503   Jeff Foust                  bent     6 1573821 3.812378e-06
## 18504   Jeff Foust              beranger     6 1573821 3.812378e-06
## 18505   Jeff Foust              bertling     6 1573821 3.812378e-06
## 18506   Jeff Foust                 betsy     6 1573821 3.812378e-06
## 18507   Jeff Foust             bhaskaran     6 1573821 3.812378e-06
## 18508   Jeff Foust                bhatia     6 1573821 3.812378e-06
## 18509   Jeff Foust               bianchi     6 1573821 3.812378e-06
## 18510   Jeff Foust               biomass     6 1573821 3.812378e-06
## 18511   Jeff Foust             bitterman     6 1573821 3.812378e-06
## 18512   Jeff Foust                 blair     6 1573821 3.812378e-06
## 18513   Jeff Foust               blended     6 1573821 3.812378e-06
## 18514   Jeff Foust              boarding     6 1573821 3.812378e-06
## 18515   Jeff Foust             bolstered     6 1573821 3.812378e-06
## 18516   Jeff Foust               booming     6 1573821 3.812378e-06
## 18517   Jeff Foust                 booth     6 1573821 3.812378e-06
## 18518   Jeff Foust                   bow     6 1573821 3.812378e-06
## 18519   Jeff Foust               bracken     6 1573821 3.812378e-06
## 18520   Jeff Foust              branding     6 1573821 3.812378e-06
## 18521   Jeff Foust                brands     6 1573821 3.812378e-06
## 18522   Jeff Foust                 bread     6 1573821 3.812378e-06
## 18523   Jeff Foust             breakdown     6 1573821 3.812378e-06
## 18524   Jeff Foust                breath     6 1573821 3.812378e-06
## 18525   Jeff Foust               bresnik     6 1573821 3.812378e-06
## 18526   Jeff Foust                   bro     6 1573821 3.812378e-06
## 18527   Jeff Foust                 bruey     6 1573821 3.812378e-06
## 18528   Jeff Foust               buildup     6 1573821 3.812378e-06
## 18529   Jeff Foust             bulgarian     6 1573821 3.812378e-06
## 18530   Jeff Foust              buoyancy     6 1573821 3.812378e-06
## 18531   Jeff Foust                buoyed     6 1573821 3.812378e-06
## 18532   Jeff Foust                busier     6 1573821 3.812378e-06
## 18533   Jeff Foust                  bust     6 1573821 3.812378e-06
## 18534   Jeff Foust                   bvp     6 1573821 3.812378e-06
## 18535   Jeff Foust            calibrated     6 1573821 3.812378e-06
## 18536   Jeff Foust                  calm     6 1573821 3.812378e-06
## 18537   Jeff Foust              calomino     6 1573821 3.812378e-06
## 18538   Jeff Foust              canadarm     6 1573821 3.812378e-06
## 18539   Jeff Foust         cancellations     6 1573821 3.812378e-06
## 18540   Jeff Foust                canopy     6 1573821 3.812378e-06
## 18541   Jeff Foust            capitalism     6 1573821 3.812378e-06
## 18542   Jeff Foust                  capt     6 1573821 3.812378e-06
## 18543   Jeff Foust              captures     6 1573821 3.812378e-06
## 18544   Jeff Foust                 caret     6 1573821 3.812378e-06
## 18545   Jeff Foust              catalogs     6 1573821 3.812378e-06
## 18546   Jeff Foust              catapult     6 1573821 3.812378e-06
## 18547   Jeff Foust                 caulk     6 1573821 3.812378e-06
## 18548   Jeff Foust              cautions     6 1573821 3.812378e-06
## 18549   Jeff Foust                ccdev2     6 1573821 3.812378e-06
## 18550   Jeff Foust                   ccp     6 1573821 3.812378e-06
## 18551   Jeff Foust                  cdms     6 1573821 3.812378e-06
## 18552   Jeff Foust              celestis     6 1573821 3.812378e-06
## 18553   Jeff Foust                cement     6 1573821 3.812378e-06
## 18554   Jeff Foust               cements     6 1573821 3.812378e-06
## 18555   Jeff Foust           centralized     6 1573821 3.812378e-06
## 18556   Jeff Foust             certifies     6 1573821 3.812378e-06
## 18557   Jeff Foust                certus     6 1573821 3.812378e-06
## 18558   Jeff Foust                chabot     6 1573821 3.812378e-06
## 18559   Jeff Foust             chantilly     6 1573821 3.812378e-06
## 18560   Jeff Foust                 charm     6 1573821 3.812378e-06
## 18561   Jeff Foust              cheapest     6 1573821 3.812378e-06
## 18562   Jeff Foust                cheers     6 1573821 3.812378e-06
## 18563   Jeff Foust               chilled     6 1573821 3.812378e-06
## 18564   Jeff Foust         choreographed     6 1573821 3.812378e-06
## 18565   Jeff Foust                 churn     6 1573821 3.812378e-06
## 18566   Jeff Foust                claire     6 1573821 3.812378e-06
## 18567   Jeff Foust                 clamp     6 1573821 3.812378e-06
## 18568   Jeff Foust              clapping     6 1573821 3.812378e-06
## 18569   Jeff Foust               classic     6 1573821 3.812378e-06
## 18570   Jeff Foust               clogged     6 1573821 3.812378e-06
## 18571   Jeff Foust               coexist     6 1573821 3.812378e-06
## 18572   Jeff Foust             coincides     6 1573821 3.812378e-06
## 18573   Jeff Foust             colaprete     6 1573821 3.812378e-06
## 18574   Jeff Foust             collicott     6 1573821 3.812378e-06
## 18575   Jeff Foust                colors     6 1573821 3.812378e-06
## 18576   Jeff Foust              compiled     6 1573821 3.812378e-06
## 18577   Jeff Foust           complacency     6 1573821 3.812378e-06
## 18578   Jeff Foust         complementing     6 1573821 3.812378e-06
## 18579   Jeff Foust             complexes     6 1573821 3.812378e-06
## 18580   Jeff Foust              complies     6 1573821 3.812378e-06
## 18581   Jeff Foust           compromised     6 1573821 3.812378e-06
## 18582   Jeff Foust              conceded     6 1573821 3.812378e-06
## 18583   Jeff Foust          conciliatory     6 1573821 3.812378e-06
## 18584   Jeff Foust           conditional     6 1573821 3.812378e-06
## 18585   Jeff Foust             conducive     6 1573821 3.812378e-06
## 18586   Jeff Foust       confidentiality     6 1573821 3.812378e-06
## 18587   Jeff Foust        congratulating     6 1573821 3.812378e-06
## 18588   Jeff Foust        congratulatory     6 1573821 3.812378e-06
## 18589   Jeff Foust            congresses     6 1573821 3.812378e-06
## 18590   Jeff Foust          conservatism     6 1573821 3.812378e-06
## 18591   Jeff Foust          constituents     6 1573821 3.812378e-06
## 18592   Jeff Foust           consultancy     6 1573821 3.812378e-06
## 18593   Jeff Foust           contaminate     6 1573821 3.812378e-06
## 18594   Jeff Foust           contemplate     6 1573821 3.812378e-06
## 18595   Jeff Foust          contemplated     6 1573821 3.812378e-06
## 18596   Jeff Foust           convergence     6 1573821 3.812378e-06
## 18597   Jeff Foust                convey     6 1573821 3.812378e-06
## 18598   Jeff Foust         cooperatively     6 1573821 3.812378e-06
## 18599   Jeff Foust                 corso     6 1573821 3.812378e-06
## 18600   Jeff Foust            cosponsors     6 1573821 3.812378e-06
## 18601   Jeff Foust                 costa     6 1573821 3.812378e-06
## 18602   Jeff Foust     counterproductive     6 1573821 3.812378e-06
## 18603   Jeff Foust              crafting     6 1573821 3.812378e-06
## 18604   Jeff Foust               cramped     6 1573821 3.812378e-06
## 18605   Jeff Foust                 crawl     6 1573821 3.812378e-06
## 18606   Jeff Foust               crawler     6 1573821 3.812378e-06
## 18607   Jeff Foust                cremin     6 1573821 3.812378e-06
## 18608   Jeff Foust                crew’s     6 1573821 3.812378e-06
## 18609   Jeff Foust                   cry     6 1573821 3.812378e-06
## 18610   Jeff Foust                  csis     6 1573821 3.812378e-06
## 18611   Jeff Foust             cubesat’s     6 1573821 3.812378e-06
## 18612   Jeff Foust            curtailing     6 1573821 3.812378e-06
## 18613   Jeff Foust                  dame     6 1573821 3.812378e-06
## 18614   Jeff Foust              darkened     6 1573821 3.812378e-06
## 18615   Jeff Foust                 day’s     6 1573821 3.812378e-06
## 18616   Jeff Foust               debrief     6 1573821 3.812378e-06
## 18617   Jeff Foust               decayed     6 1573821 3.812378e-06
## 18618   Jeff Foust                decays     6 1573821 3.812378e-06
## 18619   Jeff Foust             defendant     6 1573821 3.812378e-06
## 18620   Jeff Foust          deficiencies     6 1573821 3.812378e-06
## 18621   Jeff Foust           definitions     6 1573821 3.812378e-06
## 18622   Jeff Foust             degrading     6 1573821 3.812378e-06
## 18623   Jeff Foust                  deke     6 1573821 3.812378e-06
## 18624   Jeff Foust           delegations     6 1573821 3.812378e-06
## 18625   Jeff Foust                deluge     6 1573821 3.812378e-06
## 18626   Jeff Foust              delzoppo     6 1573821 3.812378e-06
## 18627   Jeff Foust              demanded     6 1573821 3.812378e-06
## 18628   Jeff Foust         democratizing     6 1573821 3.812378e-06
## 18629   Jeff Foust            demolition     6 1573821 3.812378e-06
## 18630   Jeff Foust                 denis     6 1573821 3.812378e-06
## 18631   Jeff Foust            dependency     6 1573821 3.812378e-06
## 18632   Jeff Foust      depressurization     6 1573821 3.812378e-06
## 18633   Jeff Foust         depressurized     6 1573821 3.812378e-06
## 18634   Jeff Foust              deserves     6 1573821 3.812378e-06
## 18635   Jeff Foust                   dfj     6 1573821 3.812378e-06
## 18636   Jeff Foust                    di     6 1573821 3.812378e-06
## 18637   Jeff Foust               dictate     6 1573821 3.812378e-06
## 18638   Jeff Foust              dictated     6 1573821 3.812378e-06
## 18639   Jeff Foust              differed     6 1573821 3.812378e-06
## 18640   Jeff Foust             digantara     6 1573821 3.812378e-06
## 18641   Jeff Foust              diligent     6 1573821 3.812378e-06
## 18642   Jeff Foust            disability     6 1573821 3.812378e-06
## 18643   Jeff Foust              disabled     6 1573821 3.812378e-06
## 18644   Jeff Foust            disastrous     6 1573821 3.812378e-06
## 18645   Jeff Foust           disciplined     6 1573821 3.812378e-06
## 18646   Jeff Foust            discounted     6 1573821 3.812378e-06
## 18647   Jeff Foust             dispersed     6 1573821 3.812378e-06
## 18648   Jeff Foust          dissatisfied     6 1573821 3.812378e-06
## 18649   Jeff Foust          distributing     6 1573821 3.812378e-06
## 18650   Jeff Foust             districts     6 1573821 3.812378e-06
## 18651   Jeff Foust               divides     6 1573821 3.812378e-06
## 18652   Jeff Foust              divisive     6 1573821 3.812378e-06
## 18653   Jeff Foust                docket     6 1573821 3.812378e-06
## 18654   Jeff Foust                 dod’s     6 1573821 3.812378e-06
## 18655   Jeff Foust             dominance     6 1573821 3.812378e-06
## 18656   Jeff Foust              donating     6 1573821 3.812378e-06
## 18657   Jeff Foust             doncaster     6 1573821 3.812378e-06
## 18658   Jeff Foust                  doom     6 1573821 3.812378e-06
## 18659   Jeff Foust          doubleheader     6 1573821 3.812378e-06
## 18660   Jeff Foust           downplaying     6 1573821 3.812378e-06
## 18661   Jeff Foust              drawback     6 1573821 3.812378e-06
## 18662   Jeff Foust                 drawn     6 1573821 3.812378e-06
## 18663   Jeff Foust                drifts     6 1573821 3.812378e-06
## 18664   Jeff Foust             duckworth     6 1573821 3.812378e-06
## 18665   Jeff Foust                dupont     6 1573821 3.812378e-06
## 18666   Jeff Foust                  dyer     6 1573821 3.812378e-06
## 18667   Jeff Foust                 dying     6 1573821 3.812378e-06
## 18668   Jeff Foust                  déjà     6 1573821 3.812378e-06
## 18669   Jeff Foust                    e1     6 1573821 3.812378e-06
## 18670   Jeff Foust                 earle     6 1573821 3.812378e-06
## 18671   Jeff Foust                easing     6 1573821 3.812378e-06
## 18672   Jeff Foust                 ecaps     6 1573821 3.812378e-06
## 18673   Jeff Foust            economical     6 1573821 3.812378e-06
## 18674   Jeff Foust                editor     6 1573821 3.812378e-06
## 18675   Jeff Foust                  edrs     6 1573821 3.812378e-06
## 18676   Jeff Foust                 egypt     6 1573821 3.812378e-06
## 18677   Jeff Foust              eighteen     6 1573821 3.812378e-06
## 18678   Jeff Foust                ejecta     6 1573821 3.812378e-06
## 18679   Jeff Foust               electro     6 1573821 3.812378e-06
## 18680   Jeff Foust              eleventh     6 1573821 3.812378e-06
## 18681   Jeff Foust              elonmusk     6 1573821 3.812378e-06
## 18682   Jeff Foust              embarked     6 1573821 3.812378e-06
## 18683   Jeff Foust              embodied     6 1573821 3.812378e-06
## 18684   Jeff Foust              emission     6 1573821 3.812378e-06
## 18685   Jeff Foust                empire     6 1573821 3.812378e-06
## 18686   Jeff Foust               employs     6 1573821 3.812378e-06
## 18687   Jeff Foust              enclosed     6 1573821 3.812378e-06
## 18688   Jeff Foust           endangering     6 1573821 3.812378e-06
## 18689   Jeff Foust          endorsements     6 1573821 3.812378e-06
## 18690   Jeff Foust                enrico     6 1573821 3.812378e-06
## 18691   Jeff Foust               envisat     6 1573821 3.812378e-06
## 18692   Jeff Foust              epidemic     6 1573821 3.812378e-06
## 18693   Jeff Foust                  erbs     6 1573821 3.812378e-06
## 18694   Jeff Foust                  erik     6 1573821 3.812378e-06
## 18695   Jeff Foust                 erred     6 1573821 3.812378e-06
## 18696   Jeff Foust             espinasse     6 1573821 3.812378e-06
## 18697   Jeff Foust             espionage     6 1573821 3.812378e-06
## 18698   Jeff Foust              everetts     6 1573821 3.812378e-06
## 18699   Jeff Foust          examinations     6 1573821 3.812378e-06
## 18700   Jeff Foust           exceedingly     6 1573821 3.812378e-06
## 18701   Jeff Foust              exempted     6 1573821 3.812378e-06
## 18702   Jeff Foust            exemptions     6 1573821 3.812378e-06
## 18703   Jeff Foust              exhausts     6 1573821 3.812378e-06
## 18704   Jeff Foust                exited     6 1573821 3.812378e-06
## 18705   Jeff Foust              exoliner     6 1573821 3.812378e-06
## 18706   Jeff Foust       experimentation     6 1573821 3.812378e-06
## 18707   Jeff Foust          exploitation     6 1573821 3.812378e-06
## 18708   Jeff Foust           exploratory     6 1573821 3.812378e-06
## 18709   Jeff Foust         exponentially     6 1573821 3.812378e-06
## 18710   Jeff Foust            expression     6 1573821 3.812378e-06
## 18711   Jeff Foust           extrapolate     6 1573821 3.812378e-06
## 18712   Jeff Foust                    f4     6 1573821 3.812378e-06
## 18713   Jeff Foust                  fake     6 1573821 3.812378e-06
## 18714   Jeff Foust           familiarity     6 1573821 3.812378e-06
## 18715   Jeff Foust               faucher     6 1573821 3.812378e-06
## 18716   Jeff Foust              feelings     6 1573821 3.812378e-06
## 18717   Jeff Foust                 feige     6 1573821 3.812378e-06
## 18718   Jeff Foust               feustel     6 1573821 3.812378e-06
## 18719   Jeff Foust                 fever     6 1573821 3.812378e-06
## 18720   Jeff Foust                 files     6 1573821 3.812378e-06
## 18721   Jeff Foust                finale     6 1573821 3.812378e-06
## 18722   Jeff Foust               fingers     6 1573821 3.812378e-06
## 18723   Jeff Foust                firm’s     6 1573821 3.812378e-06
## 18724   Jeff Foust               fishing     6 1573821 3.812378e-06
## 18725   Jeff Foust                 flake     6 1573821 3.812378e-06
## 18726   Jeff Foust             flammable     6 1573821 3.812378e-06
## 18727   Jeff Foust                flares     6 1573821 3.812378e-06
## 18728   Jeff Foust              flawless     6 1573821 3.812378e-06
## 18729   Jeff Foust                 flesh     6 1573821 3.812378e-06
## 18730   Jeff Foust                 float     6 1573821 3.812378e-06
## 18731   Jeff Foust                 flock     6 1573821 3.812378e-06
## 18732   Jeff Foust                 flood     6 1573821 3.812378e-06
## 18733   Jeff Foust             flyaround     6 1573821 3.812378e-06
## 18734   Jeff Foust                  foms     6 1573821 3.812378e-06
## 18735   Jeff Foust           forecasters     6 1573821 3.812378e-06
## 18736   Jeff Foust                forged     6 1573821 3.812378e-06
## 18737   Jeff Foust             forgotten     6 1573821 3.812378e-06
## 18738   Jeff Foust               formula     6 1573821 3.812378e-06
## 18739   Jeff Foust                 fossa     6 1573821 3.812378e-06
## 18740   Jeff Foust         fragmentation     6 1573821 3.812378e-06
## 18741   Jeff Foust            friendship     6 1573821 3.812378e-06
## 18742   Jeff Foust                 fruit     6 1573821 3.812378e-06
## 18743   Jeff Foust                   fsp     6 1573821 3.812378e-06
## 18744   Jeff Foust          fundamentals     6 1573821 3.812378e-06
## 18745   Jeff Foust                funder     6 1573821 3.812378e-06
## 18746   Jeff Foust            fundraiser     6 1573821 3.812378e-06
## 18747   Jeff Foust               gabriel     6 1573821 3.812378e-06
## 18748   Jeff Foust               gagarin     6 1573821 3.812378e-06
## 18749   Jeff Foust                garner     6 1573821 3.812378e-06
## 18750   Jeff Foust                 gaudi     6 1573821 3.812378e-06
## 18751   Jeff Foust                 gauge     6 1573821 3.812378e-06
## 18752   Jeff Foust                geffre     6 1573821 3.812378e-06
## 18753   Jeff Foust            generosity     6 1573821 3.812378e-06
## 18754   Jeff Foust              geometry     6 1573821 3.812378e-06
## 18755   Jeff Foust                  geos     6 1573821 3.812378e-06
## 18756   Jeff Foust               gerardi     6 1573821 3.812378e-06
## 18757   Jeff Foust               gialich     6 1573821 3.812378e-06
## 18758   Jeff Foust                 gibbs     6 1573821 3.812378e-06
## 18759   Jeff Foust              gigabits     6 1573821 3.812378e-06
## 18760   Jeff Foust              gilbrech     6 1573821 3.812378e-06
## 18761   Jeff Foust                  gina     6 1573821 3.812378e-06
## 18762   Jeff Foust               gingiss     6 1573821 3.812378e-06
## 18763   Jeff Foust              giuseppe     6 1573821 3.812378e-06
## 18764   Jeff Foust                glance     6 1573821 3.812378e-06
## 18765   Jeff Foust                  glex     6 1573821 3.812378e-06
## 18766   Jeff Foust               glimpse     6 1573821 3.812378e-06
## 18767   Jeff Foust                gloves     6 1573821 3.812378e-06
## 18768   Jeff Foust                  glue     6 1573821 3.812378e-06
## 18769   Jeff Foust                   gmv     6 1573821 3.812378e-06
## 18770   Jeff Foust             goldwater     6 1573821 3.812378e-06
## 18771   Jeff Foust                  golf     6 1573821 3.812378e-06
## 18772   Jeff Foust               goodwin     6 1573821 3.812378e-06
## 18773   Jeff Foust             govsatcom     6 1573821 3.812378e-06
## 18774   Jeff Foust               grabbed     6 1573821 3.812378e-06
## 18775   Jeff Foust             grapevine     6 1573821 3.812378e-06
## 18776   Jeff Foust             gratitude     6 1573821 3.812378e-06
## 18777   Jeff Foust                greene     6 1573821 3.812378e-06
## 18778   Jeff Foust            grottaglie     6 1573821 3.812378e-06
## 18779   Jeff Foust           gruithuisen     6 1573821 3.812378e-06
## 18780   Jeff Foust                   gut     6 1573821 3.812378e-06
## 18781   Jeff Foust               günther     6 1573821 3.812378e-06
## 18782   Jeff Foust                 halos     6 1573821 3.812378e-06
## 18783   Jeff Foust             harbinger     6 1573821 3.812378e-06
## 18784   Jeff Foust             harnesses     6 1573821 3.812378e-06
## 18785   Jeff Foust               hashemi     6 1573821 3.812378e-06
## 18786   Jeff Foust              hawaii’s     6 1573821 3.812378e-06
## 18787   Jeff Foust                hayley     6 1573821 3.812378e-06
## 18788   Jeff Foust                 hei’s     6 1573821 3.812378e-06
## 18789   Jeff Foust             henderson     6 1573821 3.812378e-06
## 18790   Jeff Foust                hiccup     6 1573821 3.812378e-06
## 18791   Jeff Foust                  hint     6 1573821 3.812378e-06
## 18792   Jeff Foust               hinting     6 1573821 3.812378e-06
## 18793   Jeff Foust               homendy     6 1573821 3.812378e-06
## 18794   Jeff Foust              honorary     6 1573821 3.812378e-06
## 18795   Jeff Foust              horowitz     6 1573821 3.812378e-06
## 18796   Jeff Foust              hourlong     6 1573821 3.812378e-06
## 18797   Jeff Foust                 hoyer     6 1573821 3.812378e-06
## 18798   Jeff Foust               humanly     6 1573821 3.812378e-06
## 18799   Jeff Foust                 hydra     6 1573821 3.812378e-06
## 18800   Jeff Foust            hypercurie     6 1573821 3.812378e-06
## 18801   Jeff Foust            hypergiant     6 1573821 3.812378e-06
## 18802   Jeff Foust                   i.e     6 1573821 3.812378e-06
## 18803   Jeff Foust                   iam     6 1573821 3.812378e-06
## 18804   Jeff Foust                   ibm     6 1573821 3.812378e-06
## 18805   Jeff Foust                  idiq     6 1573821 3.812378e-06
## 18806   Jeff Foust                  idle     6 1573821 3.812378e-06
## 18807   Jeff Foust               ignites     6 1573821 3.812378e-06
## 18808   Jeff Foust               ignores     6 1573821 3.812378e-06
## 18809   Jeff Foust              illinois     6 1573821 3.812378e-06
## 18810   Jeff Foust           illuminated     6 1573821 3.812378e-06
## 18811   Jeff Foust           imagination     6 1573821 3.812378e-06
## 18812   Jeff Foust             imbalance     6 1573821 3.812378e-06
## 18813   Jeff Foust               immense     6 1573821 3.812378e-06
## 18814   Jeff Foust              immunity     6 1573821 3.812378e-06
## 18815   Jeff Foust                impair     6 1573821 3.812378e-06
## 18816   Jeff Foust                 imply     6 1573821 3.812378e-06
## 18817   Jeff Foust               imposes     6 1573821 3.812378e-06
## 18818   Jeff Foust                   imu     6 1573821 3.812378e-06
## 18819   Jeff Foust           inadvertent     6 1573821 3.812378e-06
## 18820   Jeff Foust         incentivizing     6 1573821 3.812378e-06
## 18821   Jeff Foust                  inch     6 1573821 3.812378e-06
## 18822   Jeff Foust       inconsistencies     6 1573821 3.812378e-06
## 18823   Jeff Foust            incumbents     6 1573821 3.812378e-06
## 18824   Jeff Foust             incursion     6 1573821 3.812378e-06
## 18825   Jeff Foust                   ind     6 1573821 3.812378e-06
## 18826   Jeff Foust               inertia     6 1573821 3.812378e-06
## 18827   Jeff Foust              infamous     6 1573821 3.812378e-06
## 18828   Jeff Foust       infrastructures     6 1573821 3.812378e-06
## 18829   Jeff Foust          infringement     6 1573821 3.812378e-06
## 18830   Jeff Foust             inherited     6 1573821 3.812378e-06
## 18831   Jeff Foust              injector     6 1573821 3.812378e-06
## 18832   Jeff Foust                inksna     6 1573821 3.812378e-06
## 18833   Jeff Foust                inland     6 1573821 3.812378e-06
## 18834   Jeff Foust            innovating     6 1573821 3.812378e-06
## 18835   Jeff Foust             innovator     6 1573821 3.812378e-06
## 18836   Jeff Foust              insisted     6 1573821 3.812378e-06
## 18837   Jeff Foust            inspectors     6 1573821 3.812378e-06
## 18838   Jeff Foust           inspirators     6 1573821 3.812378e-06
## 18839   Jeff Foust      intercontinental     6 1573821 3.812378e-06
## 18840   Jeff Foust        intermittently     6 1573821 3.812378e-06
## 18841   Jeff Foust          intersection     6 1573821 3.812378e-06
## 18842   Jeff Foust                inuvik     6 1573821 3.812378e-06
## 18843   Jeff Foust                invoke     6 1573821 3.812378e-06
## 18844   Jeff Foust              invoking     6 1573821 3.812378e-06
## 18845   Jeff Foust                iphone     6 1573821 3.812378e-06
## 18846   Jeff Foust               ireland     6 1573821 3.812378e-06
## 18847   Jeff Foust              irvine01     6 1573821 3.812378e-06
## 18848   Jeff Foust                isar’s     6 1573821 3.812378e-06
## 18849   Jeff Foust                  isis     6 1573821 3.812378e-06
## 18850   Jeff Foust                   iso     6 1573821 3.812378e-06
## 18851   Jeff Foust               isolate     6 1573821 3.812378e-06
## 18852   Jeff Foust              istanbul     6 1573821 3.812378e-06
## 18853   Jeff Foust                    iv     6 1573821 3.812378e-06
## 18854   Jeff Foust                   i’s     6 1573821 3.812378e-06
## 18855   Jeff Foust                jammed     6 1573821 3.812378e-06
## 18856   Jeff Foust                   jeb     6 1573821 3.812378e-06
## 18857   Jeff Foust           jeopardizes     6 1573821 3.812378e-06
## 18858   Jeff Foust                judith     6 1573821 3.812378e-06
## 18859   Jeff Foust             kaitorete     6 1573821 3.812378e-06
## 18860   Jeff Foust                kaplan     6 1573821 3.812378e-06
## 18861   Jeff Foust               karlsen     6 1573821 3.812378e-06
## 18862   Jeff Foust                kelley     6 1573821 3.812378e-06
## 18863   Jeff Foust                 kelyn     6 1573821 3.812378e-06
## 18864   Jeff Foust              khlystov     6 1573821 3.812378e-06
## 18865   Jeff Foust                khosla     6 1573821 3.812378e-06
## 18866   Jeff Foust                killer     6 1573821 3.812378e-06
## 18867   Jeff Foust                kinéis     6 1573821 3.812378e-06
## 18868   Jeff Foust                  kirt     6 1573821 3.812378e-06
## 18869   Jeff Foust               kitchen     6 1573821 3.812378e-06
## 18870   Jeff Foust                knezek     6 1573821 3.812378e-06
## 18871   Jeff Foust                kortes     6 1573821 3.812378e-06
## 18872   Jeff Foust                koster     6 1573821 3.812378e-06
## 18873   Jeff Foust               kremlin     6 1573821 3.812378e-06
## 18874   Jeff Foust             kshatriya     6 1573821 3.812378e-06
## 18875   Jeff Foust               kyrsten     6 1573821 3.812378e-06
## 18876   Jeff Foust               labeled     6 1573821 3.812378e-06
## 18877   Jeff Foust               ladovaz     6 1573821 3.812378e-06
## 18878   Jeff Foust              lakestar     6 1573821 3.812378e-06
## 18879   Jeff Foust             laliberté     6 1573821 3.812378e-06
## 18880   Jeff Foust                lapses     6 1573821 3.812378e-06
## 18881   Jeff Foust                laptop     6 1573821 3.812378e-06
## 18882   Jeff Foust             learnings     6 1573821 3.812378e-06
## 18883   Jeff Foust                  lens     6 1573821 3.812378e-06
## 18884   Jeff Foust                  leon     6 1573821 3.812378e-06
## 18885   Jeff Foust           liabilities     6 1573821 3.812378e-06
## 18886   Jeff Foust            lieutenant     6 1573821 3.812378e-06
## 18887   Jeff Foust          lightsquared     6 1573821 3.812378e-06
## 18888   Jeff Foust                 linda     6 1573821 3.812378e-06
## 18889   Jeff Foust                lineup     6 1573821 3.812378e-06
## 18890   Jeff Foust              listened     6 1573821 3.812378e-06
## 18891   Jeff Foust               literal     6 1573821 3.812378e-06
## 18892   Jeff Foust            livestream     6 1573821 3.812378e-06
## 18893   Jeff Foust                   llp     6 1573821 3.812378e-06
## 18894   Jeff Foust                 lofty     6 1573821 3.812378e-06
## 18895   Jeff Foust                lohiya     6 1573821 3.812378e-06
## 18896   Jeff Foust              lombardi     6 1573821 3.812378e-06
## 18897   Jeff Foust               looming     6 1573821 3.812378e-06
## 18898   Jeff Foust                 loops     6 1573821 3.812378e-06
## 18899   Jeff Foust                 loses     6 1573821 3.812378e-06
## 18900   Jeff Foust            louisville     6 1573821 3.812378e-06
## 18901   Jeff Foust                  lpsc     6 1573821 3.812378e-06
## 18902   Jeff Foust                  lsic     6 1573821 3.812378e-06
## 18903   Jeff Foust                 lubin     6 1573821 3.812378e-06
## 18904   Jeff Foust                lucy’s     6 1573821 3.812378e-06
## 18905   Jeff Foust                  lutz     6 1573821 3.812378e-06
## 18906   Jeff Foust               machuca     6 1573821 3.812378e-06
## 18907   Jeff Foust                 macro     6 1573821 3.812378e-06
## 18908   Jeff Foust             magnified     6 1573821 3.812378e-06
## 18909   Jeff Foust                 maker     6 1573821 3.812378e-06
## 18910   Jeff Foust              malaysia     6 1573821 3.812378e-06
## 18911   Jeff Foust                  mall     6 1573821 3.812378e-06
## 18912   Jeff Foust             mandating     6 1573821 3.812378e-06
## 18913   Jeff Foust             manifesto     6 1573821 3.812378e-06
## 18914   Jeff Foust                  maps     6 1573821 3.812378e-06
## 18915   Jeff Foust                mark’s     6 1573821 3.812378e-06
## 18916   Jeff Foust                maspex     6 1573821 3.812378e-06
## 18917   Jeff Foust                 mateo     6 1573821 3.812378e-06
## 18918   Jeff Foust                mather     6 1573821 3.812378e-06
## 18919   Jeff Foust             mcdonnell     6 1573821 3.812378e-06
## 18920   Jeff Foust              mcmaster     6 1573821 3.812378e-06
## 18921   Jeff Foust              mcnamara     6 1573821 3.812378e-06
## 18922   Jeff Foust                  mega     6 1573821 3.812378e-06
## 18923   Jeff Foust        megastructures     6 1573821 3.812378e-06
## 18924   Jeff Foust           memorandums     6 1573821 3.812378e-06
## 18925   Jeff Foust                  mesa     6 1573821 3.812378e-06
## 18926   Jeff Foust                messer     6 1573821 3.812378e-06
## 18927   Jeff Foust            meteorites     6 1573821 3.812378e-06
## 18928   Jeff Foust        meteorologists     6 1573821 3.812378e-06
## 18929   Jeff Foust                  mevs     6 1573821 3.812378e-06
## 18930   Jeff Foust                   mff     6 1573821 3.812378e-06
## 18931   Jeff Foust             michibiki     6 1573821 3.812378e-06
## 18932   Jeff Foust                  mick     6 1573821 3.812378e-06
## 18933   Jeff Foust         microlauncher     6 1573821 3.812378e-06
## 18934   Jeff Foust             miglarese     6 1573821 3.812378e-06
## 18935   Jeff Foust            mikulski’s     6 1573821 3.812378e-06
## 18936   Jeff Foust               millard     6 1573821 3.812378e-06
## 18937   Jeff Foust            millimeter     6 1573821 3.812378e-06
## 18938   Jeff Foust          millinewtons     6 1573821 3.812378e-06
## 18939   Jeff Foust         millisieverts     6 1573821 3.812378e-06
## 18940   Jeff Foust                   mim     6 1573821 3.812378e-06
## 18941   Jeff Foust               miranda     6 1573821 3.812378e-06
## 18942   Jeff Foust            misconduct     6 1573821 3.812378e-06
## 18943   Jeff Foust         misconfigured     6 1573821 3.812378e-06
## 18944   Jeff Foust                   mlm     6 1573821 3.812378e-06
## 18945   Jeff Foust                  mock     6 1573821 3.812378e-06
## 18946   Jeff Foust             moderator     6 1573821 3.812378e-06
## 18947   Jeff Foust               moffett     6 1573821 3.812378e-06
## 18948   Jeff Foust                mole’s     6 1573821 3.812378e-06
## 18949   Jeff Foust                  momo     6 1573821 3.812378e-06
## 18950   Jeff Foust              monitors     6 1573821 3.812378e-06
## 18951   Jeff Foust                  moot     6 1573821 3.812378e-06
## 18952   Jeff Foust                moreau     6 1573821 3.812378e-06
## 18953   Jeff Foust           motivations     6 1573821 3.812378e-06
## 18954   Jeff Foust                 motto     6 1573821 3.812378e-06
## 18955   Jeff Foust                muscle     6 1573821 3.812378e-06
## 18956   Jeff Foust                 mylar     6 1573821 3.812378e-06
## 18957   Jeff Foust                neared     6 1573821 3.812378e-06
## 18958   Jeff Foust                nearer     6 1573821 3.812378e-06
## 18959   Jeff Foust                nebula     6 1573821 3.812378e-06
## 18960   Jeff Foust             neglected     6 1573821 3.812378e-06
## 18961   Jeff Foust              neighbor     6 1573821 3.812378e-06
## 18962   Jeff Foust             neighbors     6 1573821 3.812378e-06
## 18963   Jeff Foust             neutron’s     6 1573821 3.812378e-06
## 18964   Jeff Foust                   nev     6 1573821 3.812378e-06
## 18965   Jeff Foust                  newt     6 1573821 3.812378e-06
## 18966   Jeff Foust                 nicky     6 1573821 3.812378e-06
## 18967   Jeff Foust                   nir     6 1573821 3.812378e-06
## 18968   Jeff Foust         nondisclosure     6 1573821 3.812378e-06
## 18969   Jeff Foust           northstar’s     6 1573821 3.812378e-06
## 18970   Jeff Foust            noteworthy     6 1573821 3.812378e-06
## 18971   Jeff Foust            noticeable     6 1573821 3.812378e-06
## 18972   Jeff Foust                 notre     6 1573821 3.812378e-06
## 18973   Jeff Foust                npoess     6 1573821 3.812378e-06
## 18974   Jeff Foust                  nrao     6 1573821 3.812378e-06
## 18975   Jeff Foust                 nudge     6 1573821 3.812378e-06
## 18976   Jeff Foust             nusantara     6 1573821 3.812378e-06
## 18977   Jeff Foust                occupy     6 1573821 3.812378e-06
## 18978   Jeff Foust          oceanography     6 1573821 3.812378e-06
## 18979   Jeff Foust              officers     6 1573821 3.812378e-06
## 18980   Jeff Foust                 olson     6 1573821 3.812378e-06
## 18981   Jeff Foust                 omaha     6 1573821 3.812378e-06
## 18982   Jeff Foust                  oman     6 1573821 3.812378e-06
## 18983   Jeff Foust                  omar     6 1573821 3.812378e-06
## 18984   Jeff Foust                  omes     6 1573821 3.812378e-06
## 18985   Jeff Foust            omotenashi     6 1573821 3.812378e-06
## 18986   Jeff Foust                onishi     6 1573821 3.812378e-06
## 18987   Jeff Foust               ontario     6 1573821 3.812378e-06
## 18988   Jeff Foust               onwards     6 1573821 3.812378e-06
## 18989   Jeff Foust              operable     6 1573821 3.812378e-06
## 18990   Jeff Foust                oracle     6 1573821 3.812378e-06
## 18991   Jeff Foust            orbilander     6 1573821 3.812378e-06
## 18992   Jeff Foust               oresat0     6 1573821 3.812378e-06
## 18993   Jeff Foust                ottawa     6 1573821 3.812378e-06
## 18994   Jeff Foust                outage     6 1573821 3.812378e-06
## 18995   Jeff Foust              outlying     6 1573821 3.812378e-06
## 18996   Jeff Foust            overloaded     6 1573821 3.812378e-06
## 18997   Jeff Foust             overstate     6 1573821 3.812378e-06
## 18998   Jeff Foust      oversubscription     6 1573821 3.812378e-06
## 18999   Jeff Foust           overwhelmed     6 1573821 3.812378e-06
## 19000   Jeff Foust                  owes     6 1573821 3.812378e-06
## 19001   Jeff Foust                pace’s     6 1573821 3.812378e-06
## 19002   Jeff Foust               packing     6 1573821 3.812378e-06
## 19003   Jeff Foust                pangea     6 1573821 3.812378e-06
## 19004   Jeff Foust           parkinson’s     6 1573821 3.812378e-06
## 19005   Jeff Foust               parrish     6 1573821 3.812378e-06
## 19006   Jeff Foust                partes     6 1573821 3.812378e-06
## 19007   Jeff Foust             patiently     6 1573821 3.812378e-06
## 19008   Jeff Foust               pausing     6 1573821 3.812378e-06
## 19009   Jeff Foust                 paved     6 1573821 3.812378e-06
## 19010   Jeff Foust                   pbs     6 1573821 3.812378e-06
## 19011   Jeff Foust                 peaks     6 1573821 3.812378e-06
## 19012   Jeff Foust           penetrating     6 1573821 3.812378e-06
## 19013   Jeff Foust                 penny     6 1573821 3.812378e-06
## 19014   Jeff Foust             pensacola     6 1573821 3.812378e-06
## 19015   Jeff Foust                  pent     6 1573821 3.812378e-06
## 19016   Jeff Foust           peregrine’s     6 1573821 3.812378e-06
## 19017   Jeff Foust          periodically     6 1573821 3.812378e-06
## 19018   Jeff Foust               pesonen     6 1573821 3.812378e-06
## 19019   Jeff Foust            pieczynski     6 1573821 3.812378e-06
## 19020   Jeff Foust              piloting     6 1573821 3.812378e-06
## 19021   Jeff Foust                  pins     6 1573821 3.812378e-06
## 19022   Jeff Foust             pipelines     6 1573821 3.812378e-06
## 19023   Jeff Foust               pitting     6 1573821 3.812378e-06
## 19024   Jeff Foust               pivoted     6 1573821 3.812378e-06
## 19025   Jeff Foust              pixxel’s     6 1573821 3.812378e-06
## 19026   Jeff Foust                   pjt     6 1573821 3.812378e-06
## 19027   Jeff Foust               plagued     6 1573821 3.812378e-06
## 19028   Jeff Foust                planck     6 1573821 3.812378e-06
## 19029   Jeff Foust             plausible     6 1573821 3.812378e-06
## 19030   Jeff Foust                  plea     6 1573821 3.812378e-06
## 19031   Jeff Foust            pleasantly     6 1573821 3.812378e-06
## 19032   Jeff Foust               pledges     6 1573821 3.812378e-06
## 19033   Jeff Foust             polyamide     6 1573821 3.812378e-06
## 19034   Jeff Foust           pontoppidan     6 1573821 3.812378e-06
## 19035   Jeff Foust                  pony     6 1573821 3.812378e-06
## 19036   Jeff Foust              portugal     6 1573821 3.812378e-06
## 19037   Jeff Foust            positively     6 1573821 3.812378e-06
## 19038   Jeff Foust               postage     6 1573821 3.812378e-06
## 19039   Jeff Foust             pournelle     6 1573821 3.812378e-06
## 19040   Jeff Foust             preceding     6 1573821 3.812378e-06
## 19041   Jeff Foust              predasar     6 1573821 3.812378e-06
## 19042   Jeff Foust               prefers     6 1573821 3.812378e-06
## 19043   Jeff Foust               prelude     6 1573821 3.812378e-06
## 19044   Jeff Foust               presses     6 1573821 3.812378e-06
## 19045   Jeff Foust             pressured     6 1573821 3.812378e-06
## 19046   Jeff Foust             prestwick     6 1573821 3.812378e-06
## 19047   Jeff Foust             princeton     6 1573821 3.812378e-06
## 19048   Jeff Foust             pritchard     6 1573821 3.812378e-06
## 19049   Jeff Foust              procures     6 1573821 3.812378e-06
## 19050   Jeff Foust             producers     6 1573821 3.812378e-06
## 19051   Jeff Foust            progresses     6 1573821 3.812378e-06
## 19052   Jeff Foust            projectile     6 1573821 3.812378e-06
## 19053   Jeff Foust          proliferated     6 1573821 3.812378e-06
## 19054   Jeff Foust            pronounced     6 1573821 3.812378e-06
## 19055   Jeff Foust            proposal’s     6 1573821 3.812378e-06
## 19056   Jeff Foust           prosecutors     6 1573821 3.812378e-06
## 19057   Jeff Foust              proswift     6 1573821 3.812378e-06
## 19058   Jeff Foust              protects     6 1573821 3.812378e-06
## 19059   Jeff Foust               protein     6 1573821 3.812378e-06
## 19060   Jeff Foust            protesters     6 1573821 3.812378e-06
## 19061   Jeff Foust            protestors     6 1573821 3.812378e-06
## 19062   Jeff Foust              province     6 1573821 3.812378e-06
## 19063   Jeff Foust                   psc     6 1573821 3.812378e-06
## 19064   Jeff Foust             publicize     6 1573821 3.812378e-06
## 19065   Jeff Foust            publishing     6 1573821 3.812378e-06
## 19066   Jeff Foust              punitive     6 1573821 3.812378e-06
## 19067   Jeff Foust                 pérez     6 1573821 3.812378e-06
## 19068   Jeff Foust                   qps     6 1573821 3.812378e-06
## 19069   Jeff Foust                racial     6 1573821 3.812378e-06
## 19070   Jeff Foust                 rahul     6 1573821 3.812378e-06
## 19071   Jeff Foust                  raid     6 1573821 3.812378e-06
## 19072   Jeff Foust                rajeev     6 1573821 3.812378e-06
## 19073   Jeff Foust                 ranks     6 1573821 3.812378e-06
## 19074   Jeff Foust               raptors     6 1573821 3.812378e-06
## 19075   Jeff Foust           ravishankar     6 1573821 3.812378e-06
## 19076   Jeff Foust                  raúl     6 1573821 3.812378e-06
## 19077   Jeff Foust                   rcn     6 1573821 3.812378e-06
## 19078   Jeff Foust                reagan     6 1573821 3.812378e-06
## 19079   Jeff Foust         realistically     6 1573821 3.812378e-06
## 19080   Jeff Foust            reallocate     6 1573821 3.812378e-06
## 19081   Jeff Foust           reassessing     6 1573821 3.812378e-06
## 19082   Jeff Foust          reassessment     6 1573821 3.812378e-06
## 19083   Jeff Foust              reassure     6 1573821 3.812378e-06
## 19084   Jeff Foust               rebuilt     6 1573821 3.812378e-06
## 19085   Jeff Foust              reckless     6 1573821 3.812378e-06
## 19086   Jeff Foust            reconvenes     6 1573821 3.812378e-06
## 19087   Jeff Foust             recorders     6 1573821 3.812378e-06
## 19088   Jeff Foust            recounting     6 1573821 3.812378e-06
## 19089   Jeff Foust              recovers     6 1573821 3.812378e-06
## 19090   Jeff Foust           redesigning     6 1573821 3.812378e-06
## 19091   Jeff Foust                  redo     6 1573821 3.812378e-06
## 19092   Jeff Foust       reestablishment     6 1573821 3.812378e-06
## 19093   Jeff Foust             reforming     6 1573821 3.812378e-06
## 19094   Jeff Foust              region’s     6 1573821 3.812378e-06
## 19095   Jeff Foust                regret     6 1573821 3.812378e-06
## 19096   Jeff Foust                reilly     6 1573821 3.812378e-06
## 19097   Jeff Foust             reimburse     6 1573821 3.812378e-06
## 19098   Jeff Foust            reimbursed     6 1573821 3.812378e-06
## 19099   Jeff Foust             reinforce     6 1573821 3.812378e-06
## 19100   Jeff Foust            reinforces     6 1573821 3.812378e-06
## 19101   Jeff Foust             reinstate     6 1573821 3.812378e-06
## 19102   Jeff Foust              reissued     6 1573821 3.812378e-06
## 19103   Jeff Foust            releasable     6 1573821 3.812378e-06
## 19104   Jeff Foust              relocate     6 1573821 3.812378e-06
## 19105   Jeff Foust                remedy     6 1573821 3.812378e-06
## 19106   Jeff Foust              reminded     6 1573821 3.812378e-06
## 19107   Jeff Foust             rendering     6 1573821 3.812378e-06
## 19108   Jeff Foust                 renee     6 1573821 3.812378e-06
## 19109   Jeff Foust           renovations     6 1573821 3.812378e-06
## 19110   Jeff Foust            replicated     6 1573821 3.812378e-06
## 19111   Jeff Foust         reprogramming     6 1573821 3.812378e-06
## 19112   Jeff Foust              rescoped     6 1573821 3.812378e-06
## 19113   Jeff Foust           researching     6 1573821 3.812378e-06
## 19114   Jeff Foust             reshaping     6 1573821 3.812378e-06
## 19115   Jeff Foust             reshetnev     6 1573821 3.812378e-06
## 19116   Jeff Foust             residence     6 1573821 3.812378e-06
## 19117   Jeff Foust             resonance     6 1573821 3.812378e-06
## 19118   Jeff Foust           restoration     6 1573821 3.812378e-06
## 19119   Jeff Foust            resurgence     6 1573821 3.812378e-06
## 19120   Jeff Foust                retail     6 1573821 3.812378e-06
## 19121   Jeff Foust               retires     6 1573821 3.812378e-06
## 19122   Jeff Foust             revamping     6 1573821 3.812378e-06
## 19123   Jeff Foust              reynolds     6 1573821 3.812378e-06
## 19124   Jeff Foust                  rfis     6 1573821 3.812378e-06
## 19125   Jeff Foust            richardson     6 1573821 3.812378e-06
## 19126   Jeff Foust                riding     6 1573821 3.812378e-06
## 19127   Jeff Foust                 rieke     6 1573821 3.812378e-06
## 19128   Jeff Foust                 riley     6 1573821 3.812378e-06
## 19129   Jeff Foust               riskier     6 1573821 3.812378e-06
## 19130   Jeff Foust              robustly     6 1573821 3.812378e-06
## 19131   Jeff Foust            rotorcraft     6 1573821 3.812378e-06
## 19132   Jeff Foust                runoff     6 1573821 3.812378e-06
## 19133   Jeff Foust                  ruth     6 1573821 3.812378e-06
## 19134   Jeff Foust                    s5     6 1573821 3.812378e-06
## 19135   Jeff Foust                 salim     6 1573821 3.812378e-06
## 19136   Jeff Foust                sallee     6 1573821 3.812378e-06
## 19137   Jeff Foust                 sally     6 1573821 3.812378e-06
## 19138   Jeff Foust               saltman     6 1573821 3.812378e-06
## 19139   Jeff Foust                 salts     6 1573821 3.812378e-06
## 19140   Jeff Foust                samuel     6 1573821 3.812378e-06
## 19141   Jeff Foust                  sapp     6 1573821 3.812378e-06
## 19142   Jeff Foust                sathub     6 1573821 3.812378e-06
## 19143   Jeff Foust            satisfying     6 1573821 3.812378e-06
## 19144   Jeff Foust                  sats     6 1573821 3.812378e-06
## 19145   Jeff Foust                  saud     6 1573821 3.812378e-06
## 19146   Jeff Foust              saunders     6 1573821 3.812378e-06
## 19147   Jeff Foust                 scare     6 1573821 3.812378e-06
## 19148   Jeff Foust            scattering     6 1573821 3.812378e-06
## 19149   Jeff Foust           scheuermann     6 1573821 3.812378e-06
## 19150   Jeff Foust             schingler     6 1573821 3.812378e-06
## 19151   Jeff Foust            scrambling     6 1573821 3.812378e-06
## 19152   Jeff Foust              scrapped     6 1573821 3.812378e-06
## 19153   Jeff Foust               secrets     6 1573821 3.812378e-06
## 19154   Jeff Foust                seeker     6 1573821 3.812378e-06
## 19155   Jeff Foust          seismometers     6 1573821 3.812378e-06
## 19156   Jeff Foust           seriousness     6 1573821 3.812378e-06
## 19157   Jeff Foust               servers     6 1573821 3.812378e-06
## 19158   Jeff Foust                 ses’s     6 1573821 3.812378e-06
## 19159   Jeff Foust              settings     6 1573821 3.812378e-06
## 19160   Jeff Foust               settles     6 1573821 3.812378e-06
## 19161   Jeff Foust             shakedown     6 1573821 3.812378e-06
## 19162   Jeff Foust                shavit     6 1573821 3.812378e-06
## 19163   Jeff Foust               shelved     6 1573821 3.812378e-06
## 19164   Jeff Foust                 shirt     6 1573821 3.812378e-06
## 19165   Jeff Foust                 shook     6 1573821 3.812378e-06
## 19166   Jeff Foust             shortages     6 1573821 3.812378e-06
## 19167   Jeff Foust          shortsighted     6 1573821 3.812378e-06
## 19168   Jeff Foust             shoulders     6 1573821 3.812378e-06
## 19169   Jeff Foust              sickness     6 1573821 3.812378e-06
## 19170   Jeff Foust            similarity     6 1573821 3.812378e-06
## 19171   Jeff Foust                 simon     6 1573821 3.812378e-06
## 19172   Jeff Foust               simonyi     6 1573821 3.812378e-06
## 19173   Jeff Foust               simpson     6 1573821 3.812378e-06
## 19174   Jeff Foust               sincere     6 1573821 3.812378e-06
## 19175   Jeff Foust                sister     6 1573821 3.812378e-06
## 19176   Jeff Foust               sixteen     6 1573821 3.812378e-06
## 19177   Jeff Foust               skipped     6 1573821 3.812378e-06
## 19178   Jeff Foust               skrobot     6 1573821 3.812378e-06
## 19179   Jeff Foust              skycrane     6 1573821 3.812378e-06
## 19180   Jeff Foust                skylab     6 1573821 3.812378e-06
## 19181   Jeff Foust             skywalker     6 1573821 3.812378e-06
## 19182   Jeff Foust                    sl     6 1573821 3.812378e-06
## 19183   Jeff Foust               slashed     6 1573821 3.812378e-06
## 19184   Jeff Foust                slides     6 1573821 3.812378e-06
## 19185   Jeff Foust              smartsky     6 1573821 3.812378e-06
## 19186   Jeff Foust              smoother     6 1573821 3.812378e-06
## 19187   Jeff Foust                  sn15     6 1573821 3.812378e-06
## 19188   Jeff Foust                   sn2     6 1573821 3.812378e-06
## 19189   Jeff Foust                sodern     6 1573821 3.812378e-06
## 19190   Jeff Foust                 sooch     6 1573821 3.812378e-06
## 19191   Jeff Foust               soviets     6 1573821 3.812378e-06
## 19192   Jeff Foust          spaceplane’s     6 1573821 3.812378e-06
## 19193   Jeff Foust             spacetech     6 1573821 3.812378e-06
## 19194   Jeff Foust          spacewalkers     6 1573821 3.812378e-06
## 19195   Jeff Foust            spacewatch     6 1573821 3.812378e-06
## 19196   Jeff Foust          spectrograph     6 1573821 3.812378e-06
## 19197   Jeff Foust               spheres     6 1573821 3.812378e-06
## 19198   Jeff Foust                  spit     6 1573821 3.812378e-06
## 19199   Jeff Foust                 spoto     6 1573821 3.812378e-06
## 19200   Jeff Foust             spreading     6 1573821 3.812378e-06
## 19201   Jeff Foust           spreadsheet     6 1573821 3.812378e-06
## 19202   Jeff Foust                sprint     6 1573821 3.812378e-06
## 19203   Jeff Foust                squall     6 1573821 3.812378e-06
## 19204   Jeff Foust              squarely     6 1573821 3.812378e-06
## 19205   Jeff Foust                   sta     6 1573821 3.812378e-06
## 19206   Jeff Foust         stabilization     6 1573821 3.812378e-06
## 19207   Jeff Foust       standardization     6 1573821 3.812378e-06
## 19208   Jeff Foust              starling     6 1573821 3.812378e-06
## 19209   Jeff Foust               starman     6 1573821 3.812378e-06
## 19210   Jeff Foust           startrocket     6 1573821 3.812378e-06
## 19211   Jeff Foust                star’s     6 1573821 3.812378e-06
## 19212   Jeff Foust                steele     6 1573821 3.812378e-06
## 19213   Jeff Foust                 stein     6 1573821 3.812378e-06
## 19214   Jeff Foust              stemming     6 1573821 3.812378e-06
## 19215   Jeff Foust              stephens     6 1573821 3.812378e-06
## 19216   Jeff Foust         sterilization     6 1573821 3.812378e-06
## 19217   Jeff Foust                sticks     6 1573821 3.812378e-06
## 19218   Jeff Foust               stinger     6 1573821 3.812378e-06
## 19219   Jeff Foust            stockpiles     6 1573821 3.812378e-06
## 19220   Jeff Foust                stocks     6 1573821 3.812378e-06
## 19221   Jeff Foust                stough     6 1573821 3.812378e-06
## 19222   Jeff Foust                stpsat     6 1573821 3.812378e-06
## 19223   Jeff Foust              stricter     6 1573821 3.812378e-06
## 19224   Jeff Foust                struts     6 1573821 3.812378e-06
## 19225   Jeff Foust               study’s     6 1573821 3.812378e-06
## 19226   Jeff Foust             stumbling     6 1573821 3.812378e-06
## 19227   Jeff Foust               stymied     6 1573821 3.812378e-06
## 19228   Jeff Foust           subdivision     6 1573821 3.812378e-06
## 19229   Jeff Foust              subsided     6 1573821 3.812378e-06
## 19230   Jeff Foust            successive     6 1573821 3.812378e-06
## 19231   Jeff Foust            summarized     6 1573821 3.812378e-06
## 19232   Jeff Foust                  sums     6 1573821 3.812378e-06
## 19233   Jeff Foust              sunday’s     6 1573821 3.812378e-06
## 19234   Jeff Foust                sunset     6 1573821 3.812378e-06
## 19235   Jeff Foust                surges     6 1573821 3.812378e-06
## 19236   Jeff Foust               surreal     6 1573821 3.812378e-06
## 19237   Jeff Foust            surrounded     6 1573821 3.812378e-06
## 19238   Jeff Foust                 swath     6 1573821 3.812378e-06
## 19239   Jeff Foust                swiney     6 1573821 3.812378e-06
## 19240   Jeff Foust              switches     6 1573821 3.812378e-06
## 19241   Jeff Foust              synoptic     6 1573821 3.812378e-06
## 19242   Jeff Foust                syrtis     6 1573821 3.812378e-06
## 19243   Jeff Foust                tallia     6 1573821 3.812378e-06
## 19244   Jeff Foust               taranto     6 1573821 3.812378e-06
## 19245   Jeff Foust                 taste     6 1573821 3.812378e-06
## 19246   Jeff Foust                 tauri     6 1573821 3.812378e-06
## 19247   Jeff Foust              teaching     6 1573821 3.812378e-06
## 19248   Jeff Foust                teamed     6 1573821 3.812378e-06
## 19249   Jeff Foust            techcrunch     6 1573821 3.812378e-06
## 19250   Jeff Foust              techshot     6 1573821 3.812378e-06
## 19251   Jeff Foust             techstars     6 1573821 3.812378e-06
## 19252   Jeff Foust             teledesic     6 1573821 3.812378e-06
## 19253   Jeff Foust             telephone     6 1573821 3.812378e-06
## 19254   Jeff Foust             televised     6 1573821 3.812378e-06
## 19255   Jeff Foust              tempered     6 1573821 3.812378e-06
## 19256   Jeff Foust                 tenet     6 1573821 3.812378e-06
## 19257   Jeff Foust                  tenn     6 1573821 3.812378e-06
## 19258   Jeff Foust           territorial     6 1573821 3.812378e-06
## 19259   Jeff Foust              testbeds     6 1573821 3.812378e-06
## 19260   Jeff Foust                 tetra     6 1573821 3.812378e-06
## 19261   Jeff Foust                  thad     6 1573821 3.812378e-06
## 19262   Jeff Foust              thailand     6 1573821 3.812378e-06
## 19263   Jeff Foust              theaters     6 1573821 3.812378e-06
## 19264   Jeff Foust             thrilling     6 1573821 3.812378e-06
## 19265   Jeff Foust             throttled     6 1573821 3.812378e-06
## 19266   Jeff Foust                  tidd     6 1573821 3.812378e-06
## 19267   Jeff Foust               tighter     6 1573821 3.812378e-06
## 19268   Jeff Foust            timeframes     6 1573821 3.812378e-06
## 19269   Jeff Foust            timetables     6 1573821 3.812378e-06
## 19270   Jeff Foust                tipped     6 1573821 3.812378e-06
## 19271   Jeff Foust              tolerate     6 1573821 3.812378e-06
## 19272   Jeff Foust               toppled     6 1573821 3.812378e-06
## 19273   Jeff Foust                  tops     6 1573821 3.812378e-06
## 19274   Jeff Foust                torres     6 1573821 3.812378e-06
## 19275   Jeff Foust                 torso     6 1573821 3.812378e-06
## 19276   Jeff Foust                totals     6 1573821 3.812378e-06
## 19277   Jeff Foust                toured     6 1573821 3.812378e-06
## 19278   Jeff Foust            tournament     6 1573821 3.812378e-06
## 19279   Jeff Foust                toyota     6 1573821 3.812378e-06
## 19280   Jeff Foust               tracing     6 1573821 3.812378e-06
## 19281   Jeff Foust                 tracy     6 1573821 3.812378e-06
## 19282   Jeff Foust             tradeoffs     6 1573821 3.812378e-06
## 19283   Jeff Foust               tragedy     6 1573821 3.812378e-06
## 19284   Jeff Foust               trainer     6 1573821 3.812378e-06
## 19285   Jeff Foust            transcript     6 1573821 3.812378e-06
## 19286   Jeff Foust           translating     6 1573821 3.812378e-06
## 19287   Jeff Foust              treasure     6 1573821 3.812378e-06
## 19288   Jeff Foust              treaty’s     6 1573821 3.812378e-06
## 19289   Jeff Foust                trials     6 1573821 3.812378e-06
## 19290   Jeff Foust                 tribe     6 1573821 3.812378e-06
## 19291   Jeff Foust             triennial     6 1573821 3.812378e-06
## 19292   Jeff Foust               trojans     6 1573821 3.812378e-06
## 19293   Jeff Foust               tsuneta     6 1573821 3.812378e-06
## 19294   Jeff Foust                  turf     6 1573821 3.812378e-06
## 19295   Jeff Foust                 twist     6 1573821 3.812378e-06
## 19296   Jeff Foust                  uaps     6 1573821 3.812378e-06
## 19297   Jeff Foust          unauthorized     6 1573821 3.812378e-06
## 19298   Jeff Foust               undated     6 1573821 3.812378e-06
## 19299   Jeff Foust              undercut     6 1573821 3.812378e-06
## 19300   Jeff Foust       underestimating     6 1573821 3.812378e-06
## 19301   Jeff Foust           undoubtedly     6 1573821 3.812378e-06
## 19302   Jeff Foust              unlawful     6 1573821 3.812378e-06
## 19303   Jeff Foust               unleash     6 1573821 3.812378e-06
## 19304   Jeff Foust                unoosa     6 1573821 3.812378e-06
## 19305   Jeff Foust          unparalleled     6 1573821 3.812378e-06
## 19306   Jeff Foust           unqualified     6 1573821 3.812378e-06
## 19307   Jeff Foust          unreasonably     6 1573821 3.812378e-06
## 19308   Jeff Foust         unrecoverable     6 1573821 3.812378e-06
## 19309   Jeff Foust           unsolicited     6 1573821 3.812378e-06
## 19310   Jeff Foust              unusable     6 1573821 3.812378e-06
## 19311   Jeff Foust            unwavering     6 1573821 3.812378e-06
## 19312   Jeff Foust                unwise     6 1573821 3.812378e-06
## 19313   Jeff Foust                 upend     6 1573821 3.812378e-06
## 19314   Jeff Foust                upheld     6 1573821 3.812378e-06
## 19315   Jeff Foust               uruguay     6 1573821 3.812378e-06
## 19316   Jeff Foust                   usc     6 1573821 3.812378e-06
## 19317   Jeff Foust                 usica     6 1573821 3.812378e-06
## 19318   Jeff Foust                utmost     6 1573821 3.812378e-06
## 19319   Jeff Foust             vacancies     6 1573821 3.812378e-06
## 19320   Jeff Foust                 valda     6 1573821 3.812378e-06
## 19321   Jeff Foust              validity     6 1573821 3.812378e-06
## 19322   Jeff Foust            ventilator     6 1573821 3.812378e-06
## 19323   Jeff Foust                 vents     6 1573821 3.812378e-06
## 19324   Jeff Foust             verifying     6 1573821 3.812378e-06
## 19325   Jeff Foust           versatility     6 1573821 3.812378e-06
## 19326   Jeff Foust                 vespa     6 1573821 3.812378e-06
## 19327   Jeff Foust                  vest     6 1573821 3.812378e-06
## 19328   Jeff Foust                   vic     6 1573821 3.812378e-06
## 19329   Jeff Foust                vienna     6 1573821 3.812378e-06
## 19330   Jeff Foust               viewers     6 1573821 3.812378e-06
## 19331   Jeff Foust                   vif     6 1573821 3.812378e-06
## 19332   Jeff Foust              vigorous     6 1573821 3.812378e-06
## 19333   Jeff Foust                vinter     6 1573821 3.812378e-06
## 19334   Jeff Foust              violates     6 1573821 3.812378e-06
## 19335   Jeff Foust         visualization     6 1573821 3.812378e-06
## 19336   Jeff Foust                 vocal     6 1573821 3.812378e-06
## 19337   Jeff Foust               volcano     6 1573821 3.812378e-06
## 19338   Jeff Foust         vulnerability     6 1573821 3.812378e-06
## 19339   Jeff Foust                   w.v     6 1573821 3.812378e-06
## 19340   Jeff Foust                wakeup     6 1573821 3.812378e-06
## 19341   Jeff Foust           warfighting     6 1573821 3.812378e-06
## 19342   Jeff Foust                warmly     6 1573821 3.812378e-06
## 19343   Jeff Foust              warrants     6 1573821 3.812378e-06
## 19344   Jeff Foust                  wary     6 1573821 3.812378e-06
## 19345   Jeff Foust              watchdog     6 1573821 3.812378e-06
## 19346   Jeff Foust                weaker     6 1573821 3.812378e-06
## 19347   Jeff Foust            wealthiest     6 1573821 3.812378e-06
## 19348   Jeff Foust                 wendy     6 1573821 3.812378e-06
## 19349   Jeff Foust                werner     6 1573821 3.812378e-06
## 19350   Jeff Foust              widening     6 1573821 3.812378e-06
## 19351   Jeff Foust                 wired     6 1573821 3.812378e-06
## 19352   Jeff Foust                wisely     6 1573821 3.812378e-06
## 19353   Jeff Foust              worksite     6 1573821 3.812378e-06
## 19354   Jeff Foust                wrobel     6 1573821 3.812378e-06
## 19355   Jeff Foust                 wuerl     6 1573821 3.812378e-06
## 19356   Jeff Foust                x2nsat     6 1573821 3.812378e-06
## 19357   Jeff Foust                xinwei     6 1573821 3.812378e-06
## 19358   Jeff Foust                    xm     6 1573821 3.812378e-06
## 19359   Jeff Foust                   xsp     6 1573821 3.812378e-06
## 19360   Jeff Foust                yamasa     6 1573821 3.812378e-06
## 19361   Jeff Foust               yielded     6 1573821 3.812378e-06
## 19362   Jeff Foust                zoller     6 1573821 3.812378e-06
## 19363 Sandra Erwin                 2030s     6  716353 8.375759e-06
## 19364 Sandra Erwin                    2f     6  716353 8.375759e-06
## 19365 Sandra Erwin               aborted     6  716353 8.375759e-06
## 19366 Sandra Erwin             absorbing     6  716353 8.375759e-06
## 19367 Sandra Erwin              abundant     6  716353 8.375759e-06
## 19368 Sandra Erwin             academics     6  716353 8.375759e-06
## 19369 Sandra Erwin             academy’s     6  716353 8.375759e-06
## 19370 Sandra Erwin            achievable     6  716353 8.375759e-06
## 19371 Sandra Erwin          administered     6  716353 8.375759e-06
## 19372 Sandra Erwin              admitted     6  716353 8.375759e-06
## 19373 Sandra Erwin             adversely     6  716353 8.375759e-06
## 19374 Sandra Erwin            advertised     6  716353 8.375759e-06
## 19375 Sandra Erwin                  aesa     6  716353 8.375759e-06
## 19376 Sandra Erwin            affordably     6  716353 8.375759e-06
## 19377 Sandra Erwin            aggregated     6  716353 8.375759e-06
## 19378 Sandra Erwin            aggressors     6  716353 8.375759e-06
## 19379 Sandra Erwin          agricultural     6  716353 8.375759e-06
## 19380 Sandra Erwin              airliner     6  716353 8.375759e-06
## 19381 Sandra Erwin                allege     6  716353 8.375759e-06
## 19382 Sandra Erwin                 alloy     6  716353 8.375759e-06
## 19383 Sandra Erwin              alphabet     6  716353 8.375759e-06
## 19384 Sandra Erwin                 alter     6  716353 8.375759e-06
## 19385 Sandra Erwin                altius     6  716353 8.375759e-06
## 19386 Sandra Erwin               analogy     6  716353 8.375759e-06
## 19387 Sandra Erwin                 angel     6  716353 8.375759e-06
## 19388 Sandra Erwin            antiquated     6  716353 8.375759e-06
## 19389 Sandra Erwin         antisatellite     6  716353 8.375759e-06
## 19390 Sandra Erwin                apogee     6  716353 8.375759e-06
## 19391 Sandra Erwin                 apple     6  716353 8.375759e-06
## 19392 Sandra Erwin             approving     6  716353 8.375759e-06
## 19393 Sandra Erwin                  arab     6  716353 8.375759e-06
## 19394 Sandra Erwin                 arlen     6  716353 8.375759e-06
## 19395 Sandra Erwin                arrive     6  716353 8.375759e-06
## 19396 Sandra Erwin               arroway     6  716353 8.375759e-06
## 19397 Sandra Erwin                  arts     6  716353 8.375759e-06
## 19398 Sandra Erwin                   asi     6  716353 8.375759e-06
## 19399 Sandra Erwin            asparouhov     6  716353 8.375759e-06
## 19400 Sandra Erwin          aspirational     6  716353 8.375759e-06
## 19401 Sandra Erwin              asserted     6  716353 8.375759e-06
## 19402 Sandra Erwin             asteroids     6  716353 8.375759e-06
## 19403 Sandra Erwin                  atop     6  716353 8.375759e-06
## 19404 Sandra Erwin                avenue     6  716353 8.375759e-06
## 19405 Sandra Erwin                avoids     6  716353 8.375759e-06
## 19406 Sandra Erwin                 axiom     6  716353 8.375759e-06
## 19407 Sandra Erwin                 babin     6  716353 8.375759e-06
## 19408 Sandra Erwin                  baby     6  716353 8.375759e-06
## 19409 Sandra Erwin              backhaul     6  716353 8.375759e-06
## 19410 Sandra Erwin             backwards     6  716353 8.375759e-06
## 19411 Sandra Erwin                 baked     6  716353 8.375759e-06
## 19412 Sandra Erwin                 banik     6  716353 8.375759e-06
## 19413 Sandra Erwin               banking     6  716353 8.375759e-06
## 19414 Sandra Erwin              bankrupt     6  716353 8.375759e-06
## 19415 Sandra Erwin                barker     6  716353 8.375759e-06
## 19416 Sandra Erwin                beamed     6  716353 8.375759e-06
## 19417 Sandra Erwin                 bears     6  716353 8.375759e-06
## 19418 Sandra Erwin                   beg     6  716353 8.375759e-06
## 19419 Sandra Erwin            bertolotti     6  716353 8.375759e-06
## 19420 Sandra Erwin                 birds     6  716353 8.375759e-06
## 19421 Sandra Erwin              bistatic     6  716353 8.375759e-06
## 19422 Sandra Erwin           blackjack’s     6  716353 8.375759e-06
## 19423 Sandra Erwin                 blake     6  716353 8.375759e-06
## 19424 Sandra Erwin                  bmc3     6  716353 8.375759e-06
## 19425 Sandra Erwin                bolden     6  716353 8.375759e-06
## 19426 Sandra Erwin           bombardment     6  716353 8.375759e-06
## 19427 Sandra Erwin                  book     6  716353 8.375759e-06
## 19428 Sandra Erwin                breaks     6  716353 8.375759e-06
## 19429 Sandra Erwin         breakthroughs     6  716353 8.375759e-06
## 19430 Sandra Erwin               brewing     6  716353 8.375759e-06
## 19431 Sandra Erwin             brilliant     6  716353 8.375759e-06
## 19432 Sandra Erwin             britain’s     6  716353 8.375759e-06
## 19433 Sandra Erwin                 bucky     6  716353 8.375759e-06
## 19434 Sandra Erwin                burner     6  716353 8.375759e-06
## 19435 Sandra Erwin               busiest     6  716353 8.375759e-06
## 19436 Sandra Erwin                  buzz     6  716353 8.375759e-06
## 19437 Sandra Erwin             bypassing     6  716353 8.375759e-06
## 19438 Sandra Erwin              c4isrnet     6  716353 8.375759e-06
## 19439 Sandra Erwin               cabinet     6  716353 8.375759e-06
## 19440 Sandra Erwin                 cable     6  716353 8.375759e-06
## 19441 Sandra Erwin                   cap     6  716353 8.375759e-06
## 19442 Sandra Erwin              capstone     6  716353 8.375759e-06
## 19443 Sandra Erwin               carella     6  716353 8.375759e-06
## 19444 Sandra Erwin            cartwright     6  716353 8.375759e-06
## 19445 Sandra Erwin                carved     6  716353 8.375759e-06
## 19446 Sandra Erwin               catchup     6  716353 8.375759e-06
## 19447 Sandra Erwin            cautionary     6  716353 8.375759e-06
## 19448 Sandra Erwin            centralize     6  716353 8.375759e-06
## 19449 Sandra Erwin                centre     6  716353 8.375759e-06
## 19450 Sandra Erwin            changeover     6  716353 8.375759e-06
## 19451 Sandra Erwin             charlotte     6  716353 8.375759e-06
## 19452 Sandra Erwin               circuit     6  716353 8.375759e-06
## 19453 Sandra Erwin              circular     6  716353 8.375759e-06
## 19454 Sandra Erwin                  cjtf     6  716353 8.375759e-06
## 19455 Sandra Erwin                claire     6  716353 8.375759e-06
## 19456 Sandra Erwin               classes     6  716353 8.375759e-06
## 19457 Sandra Erwin              clearing     6  716353 8.375759e-06
## 19458 Sandra Erwin                  cnbc     6  716353 8.375759e-06
## 19459 Sandra Erwin               cochran     6  716353 8.375759e-06
## 19460 Sandra Erwin                coders     6  716353 8.375759e-06
## 19461 Sandra Erwin                coding     6  716353 8.375759e-06
## 19462 Sandra Erwin                 coile     6  716353 8.375759e-06
## 19463 Sandra Erwin              coincide     6  716353 8.375759e-06
## 19464 Sandra Erwin              collapse     6  716353 8.375759e-06
## 19465 Sandra Erwin             colleague     6  716353 8.375759e-06
## 19466 Sandra Erwin                colors     6  716353 8.375759e-06
## 19467 Sandra Erwin               commons     6  716353 8.375759e-06
## 19468 Sandra Erwin          complexities     6  716353 8.375759e-06
## 19469 Sandra Erwin              composed     6  716353 8.375759e-06
## 19470 Sandra Erwin              compress     6  716353 8.375759e-06
## 19471 Sandra Erwin               compute     6  716353 8.375759e-06
## 19472 Sandra Erwin              comstock     6  716353 8.375759e-06
## 19473 Sandra Erwin            congress’s     6  716353 8.375759e-06
## 19474 Sandra Erwin          constitution     6  716353 8.375759e-06
## 19475 Sandra Erwin               consult     6  716353 8.375759e-06
## 19476 Sandra Erwin              contacts     6  716353 8.375759e-06
## 19477 Sandra Erwin             contained     6  716353 8.375759e-06
## 19478 Sandra Erwin          contractor’s     6  716353 8.375759e-06
## 19479 Sandra Erwin           contributor     6  716353 8.375759e-06
## 19480 Sandra Erwin              cooper’s     6  716353 8.375759e-06
## 19481 Sandra Erwin           coordinator     6  716353 8.375759e-06
## 19482 Sandra Erwin                  cops     6  716353 8.375759e-06
## 19483 Sandra Erwin              cornwall     6  716353 8.375759e-06
## 19484 Sandra Erwin             countless     6  716353 8.375759e-06
## 19485 Sandra Erwin            criticisms     6  716353 8.375759e-06
## 19486 Sandra Erwin               crossed     6  716353 8.375759e-06
## 19487 Sandra Erwin              crossing     6  716353 8.375759e-06
## 19488 Sandra Erwin                  cruz     6  716353 8.375759e-06
## 19489 Sandra Erwin                  csof     6  716353 8.375759e-06
## 19490 Sandra Erwin            curriculum     6  716353 8.375759e-06
## 19491 Sandra Erwin                currie     6  716353 8.375759e-06
## 19492 Sandra Erwin               curtail     6  716353 8.375759e-06
## 19493 Sandra Erwin                 daley     6  716353 8.375759e-06
## 19494 Sandra Erwin                 danti     6  716353 8.375759e-06
## 19495 Sandra Erwin             dashboard     6  716353 8.375759e-06
## 19496 Sandra Erwin               daytime     6  716353 8.375759e-06
## 19497 Sandra Erwin                 dealt     6  716353 8.375759e-06
## 19498 Sandra Erwin               debuted     6  716353 8.375759e-06
## 19499 Sandra Erwin            defenseone     6  716353 8.375759e-06
## 19500 Sandra Erwin          definitively     6  716353 8.375759e-06
## 19501 Sandra Erwin           degradation     6  716353 8.375759e-06
## 19502 Sandra Erwin             descartes     6  716353 8.375759e-06
## 19503 Sandra Erwin            describing     6  716353 8.375759e-06
## 19504 Sandra Erwin             desirable     6  716353 8.375759e-06
## 19505 Sandra Erwin              dictated     6  716353 8.375759e-06
## 19506 Sandra Erwin                  dire     6  716353 8.375759e-06
## 19507 Sandra Erwin              disabled     6  716353 8.375759e-06
## 19508 Sandra Erwin          disaggregate     6  716353 8.375759e-06
## 19509 Sandra Erwin              disagree     6  716353 8.375759e-06
## 19510 Sandra Erwin          discontinued     6  716353 8.375759e-06
## 19511 Sandra Erwin            discourage     6  716353 8.375759e-06
## 19512 Sandra Erwin              discover     6  716353 8.375759e-06
## 19513 Sandra Erwin              displace     6  716353 8.375759e-06
## 19514 Sandra Erwin             displayed     6  716353 8.375759e-06
## 19515 Sandra Erwin              disposal     6  716353 8.375759e-06
## 19516 Sandra Erwin       diversification     6  716353 8.375759e-06
## 19517 Sandra Erwin          diversifying     6  716353 8.375759e-06
## 19518 Sandra Erwin             doctrinal     6  716353 8.375759e-06
## 19519 Sandra Erwin                 doors     6  716353 8.375759e-06
## 19520 Sandra Erwin             dragracer     6  716353 8.375759e-06
## 19521 Sandra Erwin                 drain     6  716353 8.375759e-06
## 19522 Sandra Erwin                 dress     6  716353 8.375759e-06
## 19523 Sandra Erwin              dropping     6  716353 8.375759e-06
## 19524 Sandra Erwin              drumbeat     6  716353 8.375759e-06
## 19525 Sandra Erwin                 d’uva     6  716353 8.375759e-06
## 19526 Sandra Erwin               earning     6  716353 8.375759e-06
## 19527 Sandra Erwin                   eat     6  716353 8.375759e-06
## 19528 Sandra Erwin                 edged     6  716353 8.375759e-06
## 19529 Sandra Erwin              edgybees     6  716353 8.375759e-06
## 19530 Sandra Erwin               edition     6  716353 8.375759e-06
## 19531 Sandra Erwin               ejected     6  716353 8.375759e-06
## 19532 Sandra Erwin               elected     6  716353 8.375759e-06
## 19533 Sandra Erwin             elections     6  716353 8.375759e-06
## 19534 Sandra Erwin           elimination     6  716353 8.375759e-06
## 19535 Sandra Erwin                 elite     6  716353 8.375759e-06
## 19536 Sandra Erwin                  elns     6  716353 8.375759e-06
## 19537 Sandra Erwin                emmons     6  716353 8.375759e-06
## 19538 Sandra Erwin            empowering     6  716353 8.375759e-06
## 19539 Sandra Erwin          encapsulated     6  716353 8.375759e-06
## 19540 Sandra Erwin              endeavor     6  716353 8.375759e-06
## 19541 Sandra Erwin           enforcement     6  716353 8.375759e-06
## 19542 Sandra Erwin            enlistment     6  716353 8.375759e-06
## 19543 Sandra Erwin           enterprises     6  716353 8.375759e-06
## 19544 Sandra Erwin         entertainment     6  716353 8.375759e-06
## 19545 Sandra Erwin              envelope     6  716353 8.375759e-06
## 19546 Sandra Erwin                  envy     6  716353 8.375759e-06
## 19547 Sandra Erwin             equitable     6  716353 8.375759e-06
## 19548 Sandra Erwin               eroding     6  716353 8.375759e-06
## 19549 Sandra Erwin                errors     6  716353 8.375759e-06
## 19550 Sandra Erwin              escalate     6  716353 8.375759e-06
## 19551 Sandra Erwin                 ethos     6  716353 8.375759e-06
## 19552 Sandra Erwin              eventual     6  716353 8.375759e-06
## 19553 Sandra Erwin           examination     6  716353 8.375759e-06
## 19554 Sandra Erwin              exceeded     6  716353 8.375759e-06
## 19555 Sandra Erwin           exceptional     6  716353 8.375759e-06
## 19556 Sandra Erwin            exemptions     6  716353 8.375759e-06
## 19557 Sandra Erwin         expeditiously     6  716353 8.375759e-06
## 19558 Sandra Erwin           exploratory     6  716353 8.375759e-06
## 19559 Sandra Erwin              explorer     6  716353 8.375759e-06
## 19560 Sandra Erwin             extracted     6  716353 8.375759e-06
## 19561 Sandra Erwin                 facet     6  716353 8.375759e-06
## 19562 Sandra Erwin             falsified     6  716353 8.375759e-06
## 19563 Sandra Erwin                  fate     6  716353 8.375759e-06
## 19564 Sandra Erwin                 ffrdc     6  716353 8.375759e-06
## 19565 Sandra Erwin                fierce     6  716353 8.375759e-06
## 19566 Sandra Erwin               figures     6  716353 8.375759e-06
## 19567 Sandra Erwin                  film     6  716353 8.375759e-06
## 19568 Sandra Erwin              finances     6  716353 8.375759e-06
## 19569 Sandra Erwin               fingers     6  716353 8.375759e-06
## 19570 Sandra Erwin              floating     6  716353 8.375759e-06
## 19571 Sandra Erwin                 flood     6  716353 8.375759e-06
## 19572 Sandra Erwin                   fod     6  716353 8.375759e-06
## 19573 Sandra Erwin               forever     6  716353 8.375759e-06
## 19574 Sandra Erwin              founders     6  716353 8.375759e-06
## 19575 Sandra Erwin            fractional     6  716353 8.375759e-06
## 19576 Sandra Erwin                  fray     6  716353 8.375759e-06
## 19577 Sandra Erwin           frustrating     6  716353 8.375759e-06
## 19578 Sandra Erwin                  frye     6  716353 8.375759e-06
## 19579 Sandra Erwin                 fuels     6  716353 8.375759e-06
## 19580 Sandra Erwin                   fun     6  716353 8.375759e-06
## 19581 Sandra Erwin         functionality     6  716353 8.375759e-06
## 19582 Sandra Erwin                  gabe     6  716353 8.375759e-06
## 19583 Sandra Erwin                   gag     6  716353 8.375759e-06
## 19584 Sandra Erwin                 gases     6  716353 8.375759e-06
## 19585 Sandra Erwin        geographically     6  716353 8.375759e-06
## 19586 Sandra Erwin               georgia     6  716353 8.375759e-06
## 19587 Sandra Erwin                german     6  716353 8.375759e-06
## 19588 Sandra Erwin               glaring     6  716353 8.375759e-06
## 19589 Sandra Erwin                  glen     6  716353 8.375759e-06
## 19590 Sandra Erwin                golden     6  716353 8.375759e-06
## 19591 Sandra Erwin              gomspace     6  716353 8.375759e-06
## 19592 Sandra Erwin               goswami     6  716353 8.375759e-06
## 19593 Sandra Erwin             governors     6  716353 8.375759e-06
## 19594 Sandra Erwin               grabbed     6  716353 8.375759e-06
## 19595 Sandra Erwin             grappling     6  716353 8.375759e-06
## 19596 Sandra Erwin               gregory     6  716353 8.375759e-06
## 19597 Sandra Erwin               group’s     6  716353 8.375759e-06
## 19598 Sandra Erwin               hallman     6  716353 8.375759e-06
## 19599 Sandra Erwin                hammer     6  716353 8.375759e-06
## 19600 Sandra Erwin                harden     6  716353 8.375759e-06
## 19601 Sandra Erwin              headache     6  716353 8.375759e-06
## 19602 Sandra Erwin             headaches     6  716353 8.375759e-06
## 19603 Sandra Erwin                heated     6  716353 8.375759e-06
## 19604 Sandra Erwin              hesitant     6  716353 8.375759e-06
## 19605 Sandra Erwin                 he’ll     6  716353 8.375759e-06
## 19606 Sandra Erwin                  hide     6  716353 8.375759e-06
## 19607 Sandra Erwin          highlighting     6  716353 8.375759e-06
## 19608 Sandra Erwin                 hints     6  716353 8.375759e-06
## 19609 Sandra Erwin                 hires     6  716353 8.375759e-06
## 19610 Sandra Erwin               hitting     6  716353 8.375759e-06
## 19611 Sandra Erwin             hollywood     6  716353 8.375759e-06
## 19612 Sandra Erwin                 horse     6  716353 8.375759e-06
## 19613 Sandra Erwin              hospital     6  716353 8.375759e-06
## 19614 Sandra Erwin                howard     6  716353 8.375759e-06
## 19615 Sandra Erwin                   hpe     6  716353 8.375759e-06
## 19616 Sandra Erwin             hurricane     6  716353 8.375759e-06
## 19617 Sandra Erwin            huttenhoff     6  716353 8.375759e-06
## 19618 Sandra Erwin          identifiable     6  716353 8.375759e-06
## 19619 Sandra Erwin              ignition     6  716353 8.375759e-06
## 19620 Sandra Erwin                impair     6  716353 8.375759e-06
## 19621 Sandra Erwin              improper     6  716353 8.375759e-06
## 19622 Sandra Erwin             inability     6  716353 8.375759e-06
## 19623 Sandra Erwin            incomplete     6  716353 8.375759e-06
## 19624 Sandra Erwin        inefficiencies     6  716353 8.375759e-06
## 19625 Sandra Erwin            inevitably     6  716353 8.375759e-06
## 19626 Sandra Erwin           inexpensive     6  716353 8.375759e-06
## 19627 Sandra Erwin            inflection     6  716353 8.375759e-06
## 19628 Sandra Erwin             informing     6  716353 8.375759e-06
## 19629 Sandra Erwin              initiate     6  716353 8.375759e-06
## 19630 Sandra Erwin            innoflight     6  716353 8.375759e-06
## 19631 Sandra Erwin              insignia     6  716353 8.375759e-06
## 19632 Sandra Erwin            installing     6  716353 8.375759e-06
## 19633 Sandra Erwin             instances     6  716353 8.375759e-06
## 19634 Sandra Erwin            insulation     6  716353 8.375759e-06
## 19635 Sandra Erwin           interactive     6  716353 8.375759e-06
## 19636 Sandra Erwin           interpreted     6  716353 8.375759e-06
## 19637 Sandra Erwin           intertwined     6  716353 8.375759e-06
## 19638 Sandra Erwin          intervention     6  716353 8.375759e-06
## 19639 Sandra Erwin             intricate     6  716353 8.375759e-06
## 19640 Sandra Erwin             intuitive     6  716353 8.375759e-06
## 19641 Sandra Erwin                   iot     6  716353 8.375759e-06
## 19642 Sandra Erwin           irreparable     6  716353 8.375759e-06
## 19643 Sandra Erwin              isolated     6  716353 8.375759e-06
## 19644 Sandra Erwin             iteration     6  716353 8.375759e-06
## 19645 Sandra Erwin                    iv     6  716353 8.375759e-06
## 19646 Sandra Erwin               jeffrey     6  716353 8.375759e-06
## 19647 Sandra Erwin            jettisoned     6  716353 8.375759e-06
## 19648 Sandra Erwin             johnathon     6  716353 8.375759e-06
## 19649 Sandra Erwin                jordan     6  716353 8.375759e-06
## 19650 Sandra Erwin                jumped     6  716353 8.375759e-06
## 19651 Sandra Erwin                 keane     6  716353 8.375759e-06
## 19652 Sandra Erwin                   kit     6  716353 8.375759e-06
## 19653 Sandra Erwin                  kurs     6  716353 8.375759e-06
## 19654 Sandra Erwin             kwajalein     6  716353 8.375759e-06
## 19655 Sandra Erwin              lagrange     6  716353 8.375759e-06
## 19656 Sandra Erwin             lamborn’s     6  716353 8.375759e-06
## 19657 Sandra Erwin              lamented     6  716353 8.375759e-06
## 19658 Sandra Erwin               landers     6  716353 8.375759e-06
## 19659 Sandra Erwin                 lands     6  716353 8.375759e-06
## 19660 Sandra Erwin                leeway     6  716353 8.375759e-06
## 19661 Sandra Erwin                  lens     6  716353 8.375759e-06
## 19662 Sandra Erwin               leonard     6  716353 8.375759e-06
## 19663 Sandra Erwin               leshner     6  716353 8.375759e-06
## 19664 Sandra Erwin             lethargic     6  716353 8.375759e-06
## 19665 Sandra Erwin             liability     6  716353 8.375759e-06
## 19666 Sandra Erwin            liberation     6  716353 8.375759e-06
## 19667 Sandra Erwin               lightly     6  716353 8.375759e-06
## 19668 Sandra Erwin            lightspeed     6  716353 8.375759e-06
## 19669 Sandra Erwin               lithium     6  716353 8.375759e-06
## 19670 Sandra Erwin                locked     6  716353 8.375759e-06
## 19671 Sandra Erwin          longstanding     6  716353 8.375759e-06
## 19672 Sandra Erwin                 loose     6  716353 8.375759e-06
## 19673 Sandra Erwin                  lops     6  716353 8.375759e-06
## 19674 Sandra Erwin                 loses     6  716353 8.375759e-06
## 19675 Sandra Erwin               madigan     6  716353 8.375759e-06
## 19676 Sandra Erwin              maguadog     6  716353 8.375759e-06
## 19677 Sandra Erwin            mainstream     6  716353 8.375759e-06
## 19678 Sandra Erwin                majors     6  716353 8.375759e-06
## 19679 Sandra Erwin               major’s     6  716353 8.375759e-06
## 19680 Sandra Erwin               malware     6  716353 8.375759e-06
## 19681 Sandra Erwin            maneuvered     6  716353 8.375759e-06
## 19682 Sandra Erwin          manipulation     6  716353 8.375759e-06
## 19683 Sandra Erwin              marching     6  716353 8.375759e-06
## 19684 Sandra Erwin               matches     6  716353 8.375759e-06
## 19685 Sandra Erwin                 mated     6  716353 8.375759e-06
## 19686 Sandra Erwin          materialized     6  716353 8.375759e-06
## 19687 Sandra Erwin            maximizing     6  716353 8.375759e-06
## 19688 Sandra Erwin               meadows     6  716353 8.375759e-06
## 19689 Sandra Erwin                 meeks     6  716353 8.375759e-06
## 19690 Sandra Erwin             megahertz     6  716353 8.375759e-06
## 19691 Sandra Erwin                metals     6  716353 8.375759e-06
## 19692 Sandra Erwin         methodologies     6  716353 8.375759e-06
## 19693 Sandra Erwin                metrea     6  716353 8.375759e-06
## 19694 Sandra Erwin                  mgue     6  716353 8.375759e-06
## 19695 Sandra Erwin              michigan     6  716353 8.375759e-06
## 19696 Sandra Erwin              midnight     6  716353 8.375759e-06
## 19697 Sandra Erwin            militarily     6  716353 8.375759e-06
## 19698 Sandra Erwin                   mir     6  716353 8.375759e-06
## 19699 Sandra Erwin               mirrors     6  716353 8.375759e-06
## 19700 Sandra Erwin             mitigated     6  716353 8.375759e-06
## 19701 Sandra Erwin                    ml     6  716353 8.375759e-06
## 19702 Sandra Erwin             modifying     6  716353 8.375759e-06
## 19703 Sandra Erwin              momentus     6  716353 8.375759e-06
## 19704 Sandra Erwin               monahan     6  716353 8.375759e-06
## 19705 Sandra Erwin               monthly     6  716353 8.375759e-06
## 19706 Sandra Erwin                morale     6  716353 8.375759e-06
## 19707 Sandra Erwin              mordaunt     6  716353 8.375759e-06
## 19708 Sandra Erwin               mossaic     6  716353 8.375759e-06
## 19709 Sandra Erwin                 mount     6  716353 8.375759e-06
## 19710 Sandra Erwin                 mouse     6  716353 8.375759e-06
## 19711 Sandra Erwin                 mouth     6  716353 8.375759e-06
## 19712 Sandra Erwin                 mover     6  716353 8.375759e-06
## 19713 Sandra Erwin                mozena     6  716353 8.375759e-06
## 19714 Sandra Erwin          multipurpose     6  716353 8.375759e-06
## 19715 Sandra Erwin                museum     6  716353 8.375759e-06
## 19716 Sandra Erwin                 musey     6  716353 8.375759e-06
## 19717 Sandra Erwin                 myers     6  716353 8.375759e-06
## 19718 Sandra Erwin         nanosatellite     6  716353 8.375759e-06
## 19719 Sandra Erwin                 nasem     6  716353 8.375759e-06
## 19720 Sandra Erwin               nearing     6  716353 8.375759e-06
## 19721 Sandra Erwin                 nears     6  716353 8.375759e-06
## 19722 Sandra Erwin          neighborhood     6  716353 8.375759e-06
## 19723 Sandra Erwin               neufeld     6  716353 8.375759e-06
## 19724 Sandra Erwin                  nice     6  716353 8.375759e-06
## 19725 Sandra Erwin                noaa’s     6  716353 8.375759e-06
## 19726 Sandra Erwin                 nolan     6  716353 8.375759e-06
## 19727 Sandra Erwin                   ntm     6  716353 8.375759e-06
## 19728 Sandra Erwin                   nye     6  716353 8.375759e-06
## 19729 Sandra Erwin          obsolescence     6  716353 8.375759e-06
## 19730 Sandra Erwin              occupied     6  716353 8.375759e-06
## 19731 Sandra Erwin                occurs     6  716353 8.375759e-06
## 19732 Sandra Erwin             omnispace     6  716353 8.375759e-06
## 19733 Sandra Erwin              openings     6  716353 8.375759e-06
## 19734 Sandra Erwin              optimism     6  716353 8.375759e-06
## 19735 Sandra Erwin         orchestration     6  716353 8.375759e-06
## 19736 Sandra Erwin              outlines     6  716353 8.375759e-06
## 19737 Sandra Erwin              outpaced     6  716353 8.375759e-06
## 19738 Sandra Erwin             outspoken     6  716353 8.375759e-06
## 19739 Sandra Erwin                    p3     6  716353 8.375759e-06
## 19740 Sandra Erwin            pacesetter     6  716353 8.375759e-06
## 19741 Sandra Erwin                  pack     6  716353 8.375759e-06
## 19742 Sandra Erwin              packaged     6  716353 8.375759e-06
## 19743 Sandra Erwin               painful     6  716353 8.375759e-06
## 19744 Sandra Erwin                 paint     6  716353 8.375759e-06
## 19745 Sandra Erwin                   pan     6  716353 8.375759e-06
## 19746 Sandra Erwin             paralysis     6  716353 8.375759e-06
## 19747 Sandra Erwin                parisi     6  716353 8.375759e-06
## 19748 Sandra Erwin                parity     6  716353 8.375759e-06
## 19749 Sandra Erwin               parking     6  716353 8.375759e-06
## 19750 Sandra Erwin               pathway     6  716353 8.375759e-06
## 19751 Sandra Erwin                 pearl     6  716353 8.375759e-06
## 19752 Sandra Erwin               persist     6  716353 8.375759e-06
## 19753 Sandra Erwin                philco     6  716353 8.375759e-06
## 19754 Sandra Erwin                 plate     6  716353 8.375759e-06
## 19755 Sandra Erwin             plausible     6  716353 8.375759e-06
## 19756 Sandra Erwin              plodding     6  716353 8.375759e-06
## 19757 Sandra Erwin                 poles     6  716353 8.375759e-06
## 19758 Sandra Erwin          policymakers     6  716353 8.375759e-06
## 19759 Sandra Erwin                poorly     6  716353 8.375759e-06
## 19760 Sandra Erwin                   pop     6  716353 8.375759e-06
## 19761 Sandra Erwin               popular     6  716353 8.375759e-06
## 19762 Sandra Erwin           populations     6  716353 8.375759e-06
## 19763 Sandra Erwin              portable     6  716353 8.375759e-06
## 19764 Sandra Erwin           possenriede     6  716353 8.375759e-06
## 19765 Sandra Erwin               posting     6  716353 8.375759e-06
## 19766 Sandra Erwin             postponed     6  716353 8.375759e-06
## 19767 Sandra Erwin               potomac     6  716353 8.375759e-06
## 19768 Sandra Erwin            powerpoint     6  716353 8.375759e-06
## 19769 Sandra Erwin           practicable     6  716353 8.375759e-06
## 19770 Sandra Erwin              precious     6  716353 8.375759e-06
## 19771 Sandra Erwin             predatory     6  716353 8.375759e-06
## 19772 Sandra Erwin            predicated     6  716353 8.375759e-06
## 19773 Sandra Erwin          preemptively     6  716353 8.375759e-06
## 19774 Sandra Erwin            preferable     6  716353 8.375759e-06
## 19775 Sandra Erwin                 print     6  716353 8.375759e-06
## 19776 Sandra Erwin        prioritization     6  716353 8.375759e-06
## 19777 Sandra Erwin                probes     6  716353 8.375759e-06
## 19778 Sandra Erwin             processed     6  716353 8.375759e-06
## 19779 Sandra Erwin             producers     6  716353 8.375759e-06
## 19780 Sandra Erwin            productive     6  716353 8.375759e-06
## 19781 Sandra Erwin               profits     6  716353 8.375759e-06
## 19782 Sandra Erwin            prometheus     6  716353 8.375759e-06
## 19783 Sandra Erwin            propaganda     6  716353 8.375759e-06
## 19784 Sandra Erwin             propelled     6  716353 8.375759e-06
## 19785 Sandra Erwin             prospects     6  716353 8.375759e-06
## 19786 Sandra Erwin                proves     6  716353 8.375759e-06
## 19787 Sandra Erwin                 punch     6  716353 8.375759e-06
## 19788 Sandra Erwin               purdy’s     6  716353 8.375759e-06
## 19789 Sandra Erwin              pursuits     6  716353 8.375759e-06
## 19790 Sandra Erwin              quantify     6  716353 8.375759e-06
## 19791 Sandra Erwin               quietly     6  716353 8.375759e-06
## 19792 Sandra Erwin                 rally     6  716353 8.375759e-06
## 19793 Sandra Erwin             ratcliffe     6  716353 8.375759e-06
## 19794 Sandra Erwin                 raton     6  716353 8.375759e-06
## 19795 Sandra Erwin              reassign     6  716353 8.375759e-06
## 19796 Sandra Erwin            rebranding     6  716353 8.375759e-06
## 19797 Sandra Erwin                recall     6  716353 8.375759e-06
## 19798 Sandra Erwin              recorded     6  716353 8.375759e-06
## 19799 Sandra Erwin           recruitment     6  716353 8.375759e-06
## 19800 Sandra Erwin             recycling     6  716353 8.375759e-06
## 19801 Sandra Erwin               refrain     6  716353 8.375759e-06
## 19802 Sandra Erwin              register     6  716353 8.375759e-06
## 19803 Sandra Erwin            registered     6  716353 8.375759e-06
## 19804 Sandra Erwin          registration     6  716353 8.375759e-06
## 19805 Sandra Erwin            reinforces     6  716353 8.375759e-06
## 19806 Sandra Erwin           remediation     6  716353 8.375759e-06
## 19807 Sandra Erwin               reminds     6  716353 8.375759e-06
## 19808 Sandra Erwin           reminiscent     6  716353 8.375759e-06
## 19809 Sandra Erwin         repercussions     6  716353 8.375759e-06
## 19810 Sandra Erwin       representations     6  716353 8.375759e-06
## 19811 Sandra Erwin               resided     6  716353 8.375759e-06
## 19812 Sandra Erwin                resort     6  716353 8.375759e-06
## 19813 Sandra Erwin             respected     6  716353 8.375759e-06
## 19814 Sandra Erwin              reversed     6  716353 8.375759e-06
## 19815 Sandra Erwin                ribbon     6  716353 8.375759e-06
## 19816 Sandra Erwin            richardson     6  716353 8.375759e-06
## 19817 Sandra Erwin                ripple     6  716353 8.375759e-06
## 19818 Sandra Erwin              robinson     6  716353 8.375759e-06
## 19819 Sandra Erwin            robustness     6  716353 8.375759e-06
## 19820 Sandra Erwin                 rocky     6  716353 8.375759e-06
## 19821 Sandra Erwin                  root     6  716353 8.375759e-06
## 19822 Sandra Erwin                rooted     6  716353 8.375759e-06
## 19823 Sandra Erwin                  ross     6  716353 8.375759e-06
## 19824 Sandra Erwin                routed     6  716353 8.375759e-06
## 19825 Sandra Erwin                   rtx     6  716353 8.375759e-06
## 19826 Sandra Erwin                rumors     6  716353 8.375759e-06
## 19827 Sandra Erwin                   s.d     6  716353 8.375759e-06
## 19828 Sandra Erwin                safyan     6  716353 8.375759e-06
## 19829 Sandra Erwin                saic’s     6  716353 8.375759e-06
## 19830 Sandra Erwin                 salvo     6  716353 8.375759e-06
## 19831 Sandra Erwin                satnet     6  716353 8.375759e-06
## 19832 Sandra Erwin              schirner     6  716353 8.375759e-06
## 19833 Sandra Erwin               secrets     6  716353 8.375759e-06
## 19834 Sandra Erwin              sergeant     6  716353 8.375759e-06
## 19835 Sandra Erwin            settlement     6  716353 8.375759e-06
## 19836 Sandra Erwin                severe     6  716353 8.375759e-06
## 19837 Sandra Erwin               shelton     6  716353 8.375759e-06
## 19838 Sandra Erwin               shimmin     6  716353 8.375759e-06
## 19839 Sandra Erwin               shipton     6  716353 8.375759e-06
## 19840 Sandra Erwin               shooter     6  716353 8.375759e-06
## 19841 Sandra Erwin              sidekick     6  716353 8.375759e-06
## 19842 Sandra Erwin              signaled     6  716353 8.375759e-06
## 19843 Sandra Erwin                singer     6  716353 8.375759e-06
## 19844 Sandra Erwin           smithsonian     6  716353 8.375759e-06
## 19845 Sandra Erwin               soaring     6  716353 8.375759e-06
## 19846 Sandra Erwin               soldier     6  716353 8.375759e-06
## 19847 Sandra Erwin                solers     6  716353 8.375759e-06
## 19848 Sandra Erwin        sophistication     6  716353 8.375759e-06
## 19849 Sandra Erwin                 sorge     6  716353 8.375759e-06
## 19850 Sandra Erwin                sorice     6  716353 8.375759e-06
## 19851 Sandra Erwin               soviets     6  716353 8.375759e-06
## 19852 Sandra Erwin              spacenet     6  716353 8.375759e-06
## 19853 Sandra Erwin                spaces     6  716353 8.375759e-06
## 19854 Sandra Erwin                spares     6  716353 8.375759e-06
## 19855 Sandra Erwin            spinlaunch     6  716353 8.375759e-06
## 19856 Sandra Erwin               spire’s     6  716353 8.375759e-06
## 19857 Sandra Erwin               sponsor     6  716353 8.375759e-06
## 19858 Sandra Erwin              starlite     6  716353 8.375759e-06
## 19859 Sandra Erwin               statute     6  716353 8.375759e-06
## 19860 Sandra Erwin             statutory     6  716353 8.375759e-06
## 19861 Sandra Erwin              sterling     6  716353 8.375759e-06
## 19862 Sandra Erwin               stewart     6  716353 8.375759e-06
## 19863 Sandra Erwin             stimulate     6  716353 8.375759e-06
## 19864 Sandra Erwin                  stir     6  716353 8.375759e-06
## 19865 Sandra Erwin                 stove     6  716353 8.375759e-06
## 19866 Sandra Erwin              strained     6  716353 8.375759e-06
## 19867 Sandra Erwin            stratcom’s     6  716353 8.375759e-06
## 19868 Sandra Erwin            strategist     6  716353 8.375759e-06
## 19869 Sandra Erwin               stretch     6  716353 8.375759e-06
## 19870 Sandra Erwin                string     6  716353 8.375759e-06
## 19871 Sandra Erwin               strobel     6  716353 8.375759e-06
## 19872 Sandra Erwin            subsidized     6  716353 8.375759e-06
## 19873 Sandra Erwin                   sum     6  716353 8.375759e-06
## 19874 Sandra Erwin                  sums     6  716353 8.375759e-06
## 19875 Sandra Erwin                 supra     6  716353 8.375759e-06
## 19876 Sandra Erwin             surpassed     6  716353 8.375759e-06
## 19877 Sandra Erwin            surpassing     6  716353 8.375759e-06
## 19878 Sandra Erwin               surveys     6  716353 8.375759e-06
## 19879 Sandra Erwin             suspected     6  716353 8.375759e-06
## 19880 Sandra Erwin                  sv05     6  716353 8.375759e-06
## 19881 Sandra Erwin                 sweet     6  716353 8.375759e-06
## 19882 Sandra Erwin                  sync     6  716353 8.375759e-06
## 19883 Sandra Erwin                tactic     6  716353 8.375759e-06
## 19884 Sandra Erwin              takeover     6  716353 8.375759e-06
## 19885 Sandra Erwin              talented     6  716353 8.375759e-06
## 19886 Sandra Erwin           technicians     6  716353 8.375759e-06
## 19887 Sandra Erwin          temperatures     6  716353 8.375759e-06
## 19888 Sandra Erwin                   ten     6  716353 8.375759e-06
## 19889 Sandra Erwin                 tenth     6  716353 8.375759e-06
## 19890 Sandra Erwin              terrible     6  716353 8.375759e-06
## 19891 Sandra Erwin               testers     6  716353 8.375759e-06
## 19892 Sandra Erwin                they’d     6  716353 8.375759e-06
## 19893 Sandra Erwin                  thin     6  716353 8.375759e-06
## 19894 Sandra Erwin               thomson     6  716353 8.375759e-06
## 19895 Sandra Erwin              thriving     6  716353 8.375759e-06
## 19896 Sandra Erwin                  tide     6  716353 8.375759e-06
## 19897 Sandra Erwin                  tina     6  716353 8.375759e-06
## 19898 Sandra Erwin              titanium     6  716353 8.375759e-06
## 19899 Sandra Erwin           tomorrow.io     6  716353 8.375759e-06
## 19900 Sandra Erwin              tompkins     6  716353 8.375759e-06
## 19901 Sandra Erwin                 toner     6  716353 8.375759e-06
## 19902 Sandra Erwin              toughest     6  716353 8.375759e-06
## 19903 Sandra Erwin               tousley     6  716353 8.375759e-06
## 19904 Sandra Erwin             trackable     6  716353 8.375759e-06
## 19905 Sandra Erwin              trailers     6  716353 8.375759e-06
## 19906 Sandra Erwin                traupe     6  716353 8.375759e-06
## 19907 Sandra Erwin               trigger     6  716353 8.375759e-06
## 19908 Sandra Erwin             triggered     6  716353 8.375759e-06
## 19909 Sandra Erwin              troubles     6  716353 8.375759e-06
## 19910 Sandra Erwin                trucks     6  716353 8.375759e-06
## 19911 Sandra Erwin                  tsat     6  716353 8.375759e-06
## 19912 Sandra Erwin             tuesday’s     6  716353 8.375759e-06
## 19913 Sandra Erwin               turnock     6  716353 8.375759e-06
## 19914 Sandra Erwin                 tyson     6  716353 8.375759e-06
## 19915 Sandra Erwin                   uav     6  716353 8.375759e-06
## 19916 Sandra Erwin             unanimous     6  716353 8.375759e-06
## 19917 Sandra Erwin           uncontested     6  716353 8.375759e-06
## 19918 Sandra Erwin        underestimated     6  716353 8.375759e-06
## 19919 Sandra Erwin          undetectable     6  716353 8.375759e-06
## 19920 Sandra Erwin             unimpeded     6  716353 8.375759e-06
## 19921 Sandra Erwin              universe     6  716353 8.375759e-06
## 19922 Sandra Erwin            unresolved     6  716353 8.375759e-06
## 19923 Sandra Erwin            untethered     6  716353 8.375759e-06
## 19924 Sandra Erwin                unveil     6  716353 8.375759e-06
## 19925 Sandra Erwin                 usage     6  716353 8.375759e-06
## 19926 Sandra Erwin               useless     6  716353 8.375759e-06
## 19927 Sandra Erwin                  usns     6  716353 8.375759e-06
## 19928 Sandra Erwin           utilization     6  716353 8.375759e-06
## 19929 Sandra Erwin                 vague     6  716353 8.375759e-06
## 19930 Sandra Erwin                 verge     6  716353 8.375759e-06
## 19931 Sandra Erwin                  vets     6  716353 8.375759e-06
## 19932 Sandra Erwin                   vis     6  716353 8.375759e-06
## 19933 Sandra Erwin               visions     6  716353 8.375759e-06
## 19934 Sandra Erwin                wasted     6  716353 8.375759e-06
## 19935 Sandra Erwin              wasteful     6  716353 8.375759e-06
## 19936 Sandra Erwin           weaponizing     6  716353 8.375759e-06
## 19937 Sandra Erwin               wearing     6  716353 8.375759e-06
## 19938 Sandra Erwin                wegner     6  716353 8.375759e-06
## 19939 Sandra Erwin                 wheel     6  716353 8.375759e-06
## 19940 Sandra Erwin           willingness     6  716353 8.375759e-06
## 19941 Sandra Erwin             wonderful     6  716353 8.375759e-06
## 19942 Sandra Erwin                  wood     6  716353 8.375759e-06
## 19943 Sandra Erwin                worden     6  716353 8.375759e-06
## 19944 Sandra Erwin                writer     6  716353 8.375759e-06
## 19945 Sandra Erwin                  xtar     6  716353 8.375759e-06
## 19946 Sandra Erwin                  yeah     6  716353 8.375759e-06
## 19947 Sandra Erwin             yesterday     6  716353 8.375759e-06
## 19948 Sandra Erwin                zenith     6  716353 8.375759e-06
## 19949 Sandra Erwin                zeno’s     6  716353 8.375759e-06
## 19950 Sandra Erwin               ziegler     6  716353 8.375759e-06
## 19951   Jeff Foust                    0b     5 1573821 3.176981e-06
## 19952   Jeff Foust                  172b     5 1573821 3.176981e-06
## 19953   Jeff Foust                  180s     5 1573821 3.176981e-06
## 19954   Jeff Foust                   18m     5 1573821 3.176981e-06
## 19955   Jeff Foust                   19m     5 1573821 3.176981e-06
## 19956   Jeff Foust                 233rd     5 1573821 3.176981e-06
## 19957   Jeff Foust                 241st     5 1573821 3.176981e-06
## 19958   Jeff Foust                   29e     5 1573821 3.176981e-06
## 19959   Jeff Foust                  29th     5 1573821 3.176981e-06
## 19960   Jeff Foust                    3c     5 1573821 3.176981e-06
## 19961   Jeff Foust                   3pm     5 1573821 3.176981e-06
## 19962   Jeff Foust                  40th     5 1573821 3.176981e-06
## 19963   Jeff Foust                    a5     5 1573821 3.176981e-06
## 19964   Jeff Foust                 aaron     5 1573821 3.176981e-06
## 19965   Jeff Foust           abbreviated     5 1573821 3.176981e-06
## 19966   Jeff Foust                 abl’s     5 1573821 3.176981e-06
## 19967   Jeff Foust              aborting     5 1573821 3.176981e-06
## 19968   Jeff Foust            abrahamson     5 1573821 3.176981e-06
## 19969   Jeff Foust             absorbing     5 1573821 3.176981e-06
## 19970   Jeff Foust                 abuse     5 1573821 3.176981e-06
## 19971   Jeff Foust                 accel     5 1573821 3.176981e-06
## 19972   Jeff Foust               accepts     5 1573821 3.176981e-06
## 19973   Jeff Foust          accommodates     5 1573821 3.176981e-06
## 19974   Jeff Foust             accretion     5 1573821 3.176981e-06
## 19975   Jeff Foust              achieves     5 1573821 3.176981e-06
## 19976   Jeff Foust                 acute     5 1573821 3.176981e-06
## 19977   Jeff Foust           administers     5 1573821 3.176981e-06
## 19978   Jeff Foust                   adr     5 1573821 3.176981e-06
## 19979   Jeff Foust                 adras     5 1573821 3.176981e-06
## 19980   Jeff Foust            adventurer     5 1573821 3.176981e-06
## 19981   Jeff Foust            aggression     5 1573821 3.176981e-06
## 19982   Jeff Foust                 aired     5 1573821 3.176981e-06
## 19983   Jeff Foust         airworthiness     5 1573821 3.176981e-06
## 19984   Jeff Foust               akihiko     5 1573821 3.176981e-06
## 19985   Jeff Foust                 album     5 1573821 3.176981e-06
## 19986   Jeff Foust           albuquerque     5 1573821 3.176981e-06
## 19987   Jeff Foust               alcohol     5 1573821 3.176981e-06
## 19988   Jeff Foust                alerts     5 1573821 3.176981e-06
## 19989   Jeff Foust                 aleta     5 1573821 3.176981e-06
## 19990   Jeff Foust               allarie     5 1573821 3.176981e-06
## 19991   Jeff Foust               allison     5 1573821 3.176981e-06
## 19992   Jeff Foust                alloys     5 1573821 3.176981e-06
## 19993   Jeff Foust              alluding     5 1573821 3.176981e-06
## 19994   Jeff Foust             ambiguous     5 1573821 3.176981e-06
## 19995   Jeff Foust                  amit     5 1573821 3.176981e-06
## 19996   Jeff Foust              analyzes     5 1573821 3.176981e-06
## 19997   Jeff Foust              andersen     5 1573821 3.176981e-06
## 19998   Jeff Foust            andreessen     5 1573821 3.176981e-06
## 19999   Jeff Foust                anhalt     5 1573821 3.176981e-06
##  [ reached 'max' / getOption("max.print") -- omitted 29274 rows ]

Basándonos en los resultados de frecuencia de palabras por autor, podemos sacar varias conclusiones:

  1. Frecuencia de palabras más alta:
    • Para Sandra Erwin, las palabras más frecuentes son “space”, “force”, “air”, “satellites” y “launch”.
    • Para Jeff Foust, las palabras más frecuentes son “space”, “launch”, “nasa”, “mission” y “company”.
  2. Temas principales:
    • Tanto Sandra Erwin como Jeff Foust comparten la palabra “space” como una de las más frecuentes, lo que sugiere que ambos autores escriben mucho sobre temas relacionados con el espacio.
    • Jeff Foust también menciona mucho a la NASA y a las misiones espaciales.
    • Sandra Erwin parece centrarse más en temas como la fuerza (posiblemente en el contexto militar o aeroespacial), el aire y los satélites.
  3. Enfoque de Sandra Erwin:
    • Parece estar más enfocada en temas de defensa, militar y aeroespacial, mencionando palabras como “force”, “air”, “satellites”, “defense” y “military”.
  4. Enfoque de Jeff Foust:
    • Jeff Foust parece tener un enfoque más general en la exploración espacial, mencionando palabras como “nasa”, “mission”, “launch”, “spacecraft” y “rocket”.
  5. Diferencia en la variedad de temas:
    • Jeff Foust tiene una gama más amplia de temas, incluyendo misiones espaciales, empresas aeroespaciales (como SpaceX), tecnología espacial y la estación espacial.
    • Sandra Erwin parece estar más centrada en temas relacionados con la defensa y el uso militar del espacio.

Los resultados de frecuencia de palabras por autor reflejan los temas principales que cubren, con Jeff Foust centrándose más en la exploración espacial, la industria aeroespacial y la política espacial, mientras que Sandra Erwin se enfoca más en la defensa, la seguridad nacional y la tecnología militar, pero también cubre aspectos de la exploración espacial y la política espacial.

frequency_para_plot <- frequency[frequency$author %in% autores,]

frequency_para_plot <- frequency[frequency$author %in% 
                                   c("Jeff Foust", "Sandra Erwin"),]

frequency_para_plot <- frequency_para_plot %>% 
  select(author, word, freq) %>% 
  pivot_wider(names_from = author, 
              values_from = freq) %>%
  arrange(`Jeff Foust`, `Sandra Erwin`)

# Devuelve el promedio de la frecuencia de las palabras en las cuentas de Jeff Foust.
quantile(frequency_para_plot$`Jeff Foust`,
         probs = c(0.5),
         na.rm = TRUE) * 10000000
##      50% 
## 19.06189
# Devuelve el promedio de la frecuencia de las palabras en las cuentas de Sandra Erwin.
quantile(frequency_para_plot$`Sandra Erwin`,
         probs = c(0.5),
         na.rm = TRUE) * 10000000
##      50% 
## 41.87879
  1. Jeff Foust:
    • La mediana de la frecuencia de las palabras en las cuentas de Jeff Foust es de aproximadamente 19.06 por cada 10,000,000 palabras.
  2. Sandra Erwin:
    • La mediana de la frecuencia de las palabras en las cuentas de Sandra Erwin es de aproximadamente 41.88 por cada 10,000,000 palabras.

Esto significa que, en promedio, las palabras que Jeff Foust usa con mayor frecuencia ocurren aproximadamente 19 veces en cada 10,000,000 palabras en sus publicaciones. Mientras tanto, las palabras más comunes en las publicaciones de Sandra Erwin ocurren aproximadamente 42 veces en cada 10,000,000 palabras.

Esto sugiere que las palabras en las publicaciones de Sandra Erwin tienden a repetirse más frecuentemente que en las de Jeff Foust, lo que podría indicar un estilo de escritura más enfocado en ciertos temas o una menor diversidad léxica. Por otro lado, Jeff Foust parece tener una mayor variedad de palabras en sus publicaciones.

Realizamos un filtrado adicional sobre el objeto frequency_para_plot donde comprueba que tanto la frecuencia de las palabras para cuentas de trolls de derecha como la frecuencia de palabras para cuentas de trolls de izquierda sean mayores que 43 millones lo que sugiere que las palabras en esas filas son relativamente comunes

frequency_para_plot_2 <- frequency_para_plot[frequency_para_plot$`Jeff Foust`*1e7 > 0.1
                                             & frequency_para_plot$`Sandra Erwin`*1e7 > 0.1, ]

  ggplot(frequency_para_plot_2, 
         aes(`Jeff Foust`, 
             `Sandra Erwin`)) +
    geom_jitter(alpha = 0.1, size = 2.5, width = 0.25, height = 0.25) +
    geom_text(aes(label = word), check_overlap = TRUE, vjust = 1.5) +
    scale_x_log10(labels = percent_format()) +
    scale_y_log10(labels = percent_format()) +
    geom_abline(color = "red")

La gráfica proporcionada muestra la frecuencia de aparición de diferentes palabras en dos conjuntos de datos, las noticias redactadas por Sandra y las noticias de Jeff.

La línea roja representa una línea de referencia que indica una proporción de 1:1 entre la frecuencia de aparición de una palabra de Sandra y de Jeff.

Aquellas palabras que se acerquen más a la línea roja, serán las palabras que tienen una cantidad de apariciones similares en los artículos de ambos periodistas. Entre estas palabras apareccen la propia palabra space, satellite, services, orbit, report o control entre otras.

En cambio las palabras que se encuentran mas alejadas de la línea de referencia seran las palabras que aparecen con mayor frecuencia en artículos únicamente de uno de los autores.

Por un lado, las palabras que se encuentran alejadas de la linea de referencia pero por encima de la línea roja: son más frecuentes para Sandra. Algunas de ellas son pentagon, millitary, defense, roper…

Por otro lado, las palabras que se encuentran alejadas de la linea de referencia pero por debajo de la línea roja: son más frecuentes para Jeff. Algunas de ellas son nasa, iss, esa, asteroid…

Una vez más, observamos que Sandra tiende a abordar temas relacionados con la percepción política o militar del espacio, mientras que Jeff se centra más en la ciencia que respalda esas misiones espaciales.

word_ratios <- tokens_autores %>%
  filter(!str_detect(word, "^@")) %>%
  filter(author %in% autores) %>%
  count(word, author) %>%
  group_by(word) %>%
  filter(n >= 100) %>%
  ungroup() %>%
  pivot_wider(names_from = author, 
              values_from = n, 
              values_fill = 0) %>%
  mutate_if(is.numeric, list(~(. + 1) / (sum(.) + 1))) %>%
  mutate(logratio = log(`Jeff Foust` / `Sandra Erwin`)) %>%
  arrange(desc(logratio))

word_ratios %>%
  group_by(logratio < 0) %>%
  slice_max(abs(logratio), n = 30) %>% 
  ungroup() %>%
  mutate(word = reorder(word, logratio)) %>%
  ggplot(aes(word, logratio, fill = logratio < 0)) +
  geom_col(show.legend = TRUE) +
  coord_flip() +
  ylab("log odds ratio (Right/Left)") +
  scale_fill_discrete(name = "", labels = c("Jeff Foust", "Sandra Erwin"))
# Guardar el gráfico 
ggsave("word_ratios_autores.png", plot = last_plot(), width = 10, height = 8, units = "in")

Jeff Foust

  • Se centra en temas relacionados con la exploración espacial, la industria aeroespacial y la defensa.
  • Utiliza palabras clave como “tripulación”, “Marte”, “aterrizaje”, “astronauta”, “Artemis”, “regreso”, “Soyuz”, “ESA”, “telescopio”, “cohete”, “suborbital”, “galáctico”, “civil”, “proveedores”, “militares”, “redes”, “Pentágono”, “guerra”, “aliados”, “hipersónico”, “NDAA”, “tranche”, “táctico”, “misiles”, “cibernético”, “terminales”, “sucursal”, “SMC”, “Shanahan”, “Wilson”, “armas”, “armado”, “satcom”, “dominio”, “Raymond”, “capa”, “ejército”, “SDA”, “Pentágono”, “DOD”.

Sandra Erwin

  • Se centra en temas relacionados con la política espacial, la regulación y la legislación.
  • Utiliza palabras clave como “NASA”, “Congreso”, “administración”, “presupuesto”, “política”, “reglamentación”, “legislación”, “comercial”, “internacional”, “ciencia”, “tecnología”, “educación”, “desarrollo económico”, “diplomacia”, “sostenibilidad”.

Diferencias clave

  • Temas: Jeff Foust se centra en los aspectos técnicos y operativos de la exploración espacial y la industria aeroespacial, mientras que Sandra Erwin se centra en los aspectos políticos y regulatorios de la política espacial.

  • Vocabulario: Jeff Foust utiliza un vocabulario más técnico y especializado en sus escritos, mientras que Sandra Erwin utiliza un vocabulario más general y accesible.

  • Estilo: Jeff Foust tiene un estilo de escritura más directo y conciso, mientras que Sandra Erwin tiene un estilo de escritura más descriptivo y analítico.

Conclusiones

El análisis de palabras proporciona una visión general de los diferentes enfoques que Jeff Foust y Sandra Erwin adoptan en sus escritos. Esta información puede ser útil para comprender mejor sus perspectivas sobre la exploración espacial y la política espacial.

Interpretación adicional

Además de las diferencias clave identificadas anteriormente, el análisis de palabras también revela algunas otras tendencias interesantes. Por ejemplo, Jeff Foust utiliza con frecuencia palabras relacionadas con la colaboración internacional, como “ESA” y “alianzas”, lo que sugiere que cree que la exploración espacial es un esfuerzo global. Por otro lado, Sandra Erwin utiliza con frecuencia palabras relacionadas con la seguridad nacional y la defensa, lo que sugiere que cree que la exploración espacial es un tema de importancia estratégica para los Estados Unidos.

En general, el análisis de palabras proporciona una herramienta valiosa para comprender los diferentes enfoques que Jeff Foust y Sandra Erwin adoptan en sus escritos sobre la exploración espacial y la política espacial. Esta información puede ser útil para investigadores, estudiantes y profesionales interesados en estos temas.

Descargo de responsabilidad

Es importante tener en cuenta que el análisis de palabras es solo una herramienta para comprender el texto. No puede reemplazar el análisis humano cuidadoso del contenido y el contexto de un escrito. Además, el análisis de palabras solo es tan bueno como los datos en los que se basa. En este caso, los datos se limitan a los tweets de los dos autores. Por lo tanto, es importante tener en cuenta estas limitaciones al interpretar los resultados del análisis de palabras.

Jeff Foust

Haciendo uso de la librería Tidytext, podemos obtener un conjunto de datos que reuna los tweets junto con su valor de sentimiento asociado en la base de datos AFINN

Para hacer esto primero vamos a añadir una nueva columna a nuestro dataset ds_right_troll con un id

autor_jeff <- datos_space_limpios %>%
  filter(author == "Jeff Foust") 

autor_jeff <- autor_jeff %>%
  mutate(articulo_id = row_number())

Dividimos los tweets en palabras para poder analizar sus sentimientos, como vamos a extrar la columna content, creamos un nuevo dataset para no modificar el que ya teniamos

autor_jeff2 <- autor_jeff %>% 
  unnest_tokens(word, content)

jeff_sentiment <- autor_jeff2 %>% 
  inner_join(get_sentiments("afinn"), by = "word") %>%
  inner_join(autor_jeff %>% select(articulo_id, content), by = "articulo_id") %>%
  group_by(doc_id = articulo_id) %>% 
  summarise(sentiment = sum(value), text = first(content))

Mostramos el gráfico con el número de tweets que hay por cada valor de sentimiento

ggplot(data = jeff_sentiment, aes(x = sentiment)) + 
  geom_bar(color = 'darkslategray', fill = 'steelblue') + 
  xlab("Sentimiento") + 
  ylab("Cantidad de artículos") + 
  ggtitle("Análisis de sentimiento de Jeff Foust")

Sacamos los articulos de Jeff con mayor sentimiento negativo

articulos_jeff_negativos <- jeff_sentiment %>% 
  filter(sentiment < -25) %>%
  arrange(sentiment)

#Imprimimos los 4 primeros
head(articulos_jeff_negativos, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1   4815      -137 "every launch carries with it the risk of failure. nearly 60…
## 2   4368       -83 "washington — a nasa investigation into last year’s failure …
## 3   4471       -58 "washington — while spacex struggles to determine the cause …

El sentimiento negativo en estos artículos puede atribuirse a varias razones clave que se destacan en conjunto:

  1. Riesgo y fracaso en la exploración espacial: Los tres artículos presentan incidentes relacionados con el fracaso o el riesgo en la exploración espacial. Desde el fallo del lanzamiento del Falcon 9 de SpaceX hasta el accidente del Antares de Orbital ATK y la pérdida de carga en la nave espacial Dragon, estos eventos muestran que incluso las misiones espaciales más avanzadas pueden terminar en fracaso. Este recordatorio de la fragilidad y los riesgos inherentes a la exploración espacial puede generar un sentimiento negativo entre los lectores.

  2. Impacto financiero y comercial: Cada artículo destaca las ramificaciones financieras y comerciales de los fallos. Desde la pérdida de satélites y contratos hasta el impacto en las acciones de las empresas y las relaciones comerciales, se resalta cómo estos incidentes pueden tener consecuencias significativas en términos de pérdidas económicas y cambios en el panorama comercial del espacio. Esto puede generar preocupaciones sobre la viabilidad a largo plazo de las empresas espaciales y sus asociaciones comerciales.

  3. Incertidumbre y falta de claridad: En todos los casos, hay un elemento de incertidumbre sobre las causas exactas de los fallos. Ya sea SpaceX investigando la explosión del Falcon 9, la NASA examinando el accidente del Antares o la falta de claridad sobre la causa del fallo de la Dragon, la falta de respuestas definitivas puede crear un ambiente de inquietud y preocupación entre los lectores. La incertidumbre sobre la seguridad y la fiabilidad de los sistemas espaciales puede aumentar la percepción de riesgo y generar un sentimiento negativo.

En conjunto, estos factores contribuyen a un sentimiento negativo generalizado en los artículos, ya que subrayan los desafíos y las dificultades inherentes a la exploración espacial, así como las implicaciones financieras y comerciales significativas asociadas con los fallos en esta industria.

Sacamos los articulos de Jeff con mayor sentimiento positivo

articulos_jeff_positivos <- jeff_sentiment %>% 
  filter(sentiment > 25) %>%
  arrange(sentiment)

#Imprimimos los 4 primeros
head(articulos_jeff_positivos, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1      3        26 paris — a new decadal survey for biological and physical sci…
## 2    100        26 washington — as the european space agency continues to devel…
## 3    207        26 washington — the russian government has agreed to continue p…

Los tres artículos presentan una visión optimista y entusiasta sobre la industria espacial, destacando los avances tecnológicos, las oportunidades de crecimiento y el potencial de la exploración espacial. Sin embargo, es posible identificar ciertos elementos que podrían generar sentimientos negativos o preocupaciones en conjunto:

  1. Expectativas y Realidad: A pesar de las ambiciones y los avances tecnológicos, existe una brecha entre las expectativas y la realidad en la industria espacial. Las empresas y organizaciones perfiladas en los artículos enfrentan desafíos, retrasos y contratiempos en el desarrollo y la implementación de sus proyectos. Esta discrepancia entre lo planificado y lo logrado puede generar frustración y escepticismo.

  2. Dependencia de la Financiación y la Política: La industria espacial comercial está fuertemente influenciada por la financiación gubernamental y las decisiones políticas. La necesidad de asegurar fondos para programas clave, como el programa Commercial Crew de la NASA, y la importancia de la legislación favorable, como la Commercial Space Launch Act, resaltan la vulnerabilidad de la industria ante cambios políticos y financieros. Esto puede generar incertidumbre y preocupación sobre la estabilidad a largo plazo de la industria.

  3. Competencia y Cooperación Internacional: A medida que la industria espacial comercial crece, también aumenta la competencia y la necesidad de colaboración internacional. La presión por mantener la competitividad frente a otras naciones y empresas puede generar tensiones y preocupaciones sobre la posición y el papel de la industria en el contexto global.

  4. Seguridad y Regulación: La seguridad sigue siendo una preocupación fundamental en la industria espacial, especialmente en el ámbito de los vuelos tripulados y la cooperación internacional. La necesidad de establecer estándares de seguridad y regulaciones efectivas para proteger a los astronautas y garantizar el éxito de las misiones espaciales puede generar ansiedad y preocupación sobre los riesgos asociados con la exploración espacial.

En conjunto, estos elementos pueden contribuir a un sentimiento negativo o de preocupación sobre el futuro y la viabilidad a largo plazo de la industria espacial comercial, a pesar de los avances y las oportunidades prometedoras que presenta. La incertidumbre, la dependencia de factores externos y los desafíos técnicos y regulatorios pueden influir en la percepción general de la industria y sus perspectivas.

Sacamos los articulos de Jeff con mayor sentimiento neutral (0)

articulos_jeff_neutral <- jeff_sentiment %>% 
  filter(sentiment == 0)

#Imprimimos los 4 primeros
head(articulos_jeff_neutral, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1    252         0 washington — launch company virgin orbit filed for chapter 1…
## 2    416         0 washington — after technical and licensing delays, virgin or…
## 3    446         0 kennedy space center, florida — for a time, as a late tuesda…

Los tres artículos ofrecen una narrativa detallada sobre eventos y desarrollos específicos en la industria espacial, sin una inclinación clara hacia lo positivo o lo negativo. Sin embargo, podemos identificar algunos aspectos que podrían contribuir a un sentimiento neutral en conjunto:

  1. Desafíos y Contratiempos Técnicos: Los tres artículos describen diversos desafíos técnicos y contratiempos que enfrentan las empresas y organizaciones espaciales. Desde problemas de financiación y bancarrota hasta retrasos en el lanzamiento debido a fallos técnicos, estos eventos son presentados de manera factual, sin una carga emocional positiva o negativa.

  2. Complejidad Operativa y Logística: La complejidad de las operaciones espaciales y la logística involucrada se destaca en los artículos. Desde los desafíos técnicos asociados con el lanzamiento de cohetes hasta la coordinación de múltiples agencias y equipos, se presenta una imagen detallada pero imparcial de la naturaleza compleja de la industria espacial.

  3. Optimismo y Resiliencia: A pesar de los desafíos y contratiempos descritos, los artículos también resaltan el optimismo y la resiliencia de las empresas y organizaciones involucradas en la industria espacial. Se mencionan esfuerzos para superar obstáculos, encontrar soluciones a problemas técnicos y seguir adelante con los planes de lanzamiento, lo que contribuye a una sensación de esperanza y determinación.

En conjunto, estos elementos contribuyen a una narrativa neutral que presenta los eventos y desarrollos en la industria espacial sin una carga emocional particularmente positiva o negativa. Los lectores pueden interpretar la información de manera objetiva, sin una predisposición clara hacia una evaluación positiva o negativa de la situación.

Sandra Erwin

Haciendo uso de la librería Tidytext, podemos obtener un conjunto de datos que reuna los tweets junto con su valor de sentimiento asociado en la base de datos AFINN

Para hacer esto primero vamos a añadir una nueva columna a nuestro dataset ds_right_troll con un id

autor_sandra <- datos_space_limpios %>%
  filter(author == "Sandra Erwin") 

autor_sandra <- autor_sandra %>%
  mutate(articulo_id = row_number())

Dividimos los tweets en palabras para poder analizar sus sentimientos, como vamos a extrar la columna content, creamos un nuevo dataset para no modificar el que ya teniamos

autor_sandra2 <- autor_sandra %>% 
  unnest_tokens(word, content)

sandra_sentiment <- autor_sandra2 %>% 
  inner_join(get_sentiments("afinn"), by = "word") %>%
  inner_join(autor_sandra %>% select(articulo_id, content), by = "articulo_id") %>%
  group_by(doc_id = articulo_id) %>% 
  summarise(sentiment = sum(value), text = first(content))

Mostramos el gráfico con el número de tweets que hay por cada valor de sentimiento

ggplot(data = sandra_sentiment, aes(x = sentiment)) + 
  geom_bar(color = 'darkslategray', fill = 'steelblue') + 
  xlab("Sentimiento") + 
  ylab("Cantidad de artículos") + 
  ggtitle("Análisis de sentimiento de Sandra Erwin")

Sacamos los articulos de Sandra con mayor sentimiento negativo

articulos_sandra_negativos <- sandra_sentiment %>% 
  filter(sentiment < -25) %>%
  arrange(sentiment)

#Imprimimos los 4 primeros
head(articulos_sandra_negativos, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1    862       -47 a ship in the pacific ocean carrying a high-power laser take…
## 2   1632       -43 washington — in remarks at the white house on wednesday, pre…
## 3    329       -38 washington — experts have labeled the  ukraine conflict  the…
  1. Aumento de la amenaza en el espacio: Las noticias revelan una creciente amenaza para los satélites y las operaciones espaciales debido al desarrollo y despliegue de armas anti-satélite por parte de potencias como China, Rusia e Irán. Estas armas pueden incluir láseres de alta potencia, misiles balísticos y ataques cibernéticos, lo que plantea serias preocupaciones sobre la seguridad y la estabilidad en el espacio.

  2. Escalada potencial del conflicto: Existe el riesgo de que los conflictos en el espacio puedan escalar rápidamente y convertirse en enfrentamientos más amplios. Por ejemplo, un ataque exitoso contra un satélite podría ser percibido como un acto de guerra, lo que podría provocar represalias militares y una escalada de tensiones.

  3. Necesidad de normas y regulaciones: Dada la creciente militarización del espacio y el uso de activos espaciales comerciales en conflictos, es crucial establecer normas y regulaciones internacionales claras para garantizar la seguridad y la estabilidad en el espacio. Estas normas podrían abordar temas como la prohibición de armas anti-satélite, la protección de satélites comerciales y la responsabilidad por daños causados por actividades militares en el espacio.

  4. Importancia de la resiliencia espacial: Las amenazas emergentes en el espacio resaltan la importancia de desarrollar sistemas espaciales más resilientes y redundantes. Esto incluye el despliegue de constelaciones de satélites más pequeños y distribuidos, así como la mejora de las capacidades de detección y respuesta ante amenazas.

En resumen, estas noticias subrayan la necesidad urgente de abordar los desafíos de seguridad en el espacio y trabajar hacia un enfoque cooperativo y basado en normas para garantizar un entorno espacial seguro y sostenible.

Sacamos los articulos de Sandra con mayor sentimiento positivo.

articulos_sandra_positivos <- sandra_sentiment %>% 
  filter(sentiment > 25) %>%
  arrange(sentiment)

#Imprimimos los 4 primeros
head(articulos_sandra_positivos, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1    112        26 "washington — u.s. space force deputy chief of space operati…
## 2    295        26 "updated jan. 16 with space systems command announcement of …
## 3    301        26 "washington — daniel porras, a f ormer executive  at the sec…
  1. Cooperación Internacional en Defensa Espacial: Las noticias resaltan la creciente colaboración entre los Estados Unidos y sus aliados en la protección y defensa de activos espaciales. Esto incluye la compartición de tecnologías, estrategias y la realización de inversiones conjuntas en sistemas de defensa espacial.

  2. Éxito en Misiones Espaciales: Se destaca el éxito de misiones espaciales clave, como el lanzamiento exitoso de satélites y la recuperación de cohetes. Esto demuestra la capacidad de la industria espacial para llevar a cabo misiones importantes de manera efectiva y eficiente.

  3. Desarrollo de Tecnologías Innovadoras: Las noticias muestran el progreso en el desarrollo de tecnologías innovadoras para la sostenibilidad y la eficiencia en el espacio, como los servicios de mantenimiento en órbita y la eliminación de desechos espaciales.

  4. Desafíos Regulatorios y Normativos: Se resalta la necesidad de abordar los desafíos regulatorios y normativos en el espacio, especialmente para las nuevas empresas y startups. Esto incluye la necesidad de establecer normas claras y mejores prácticas para garantizar la seguridad y la sostenibilidad de las actividades espaciales.

  5. Inversión y Colaboración en el Sector Espacial Comercial: Las noticias muestran una creciente inversión y colaboración en el sector espacial comercial, con empresas emergentes buscando financiamiento para desarrollar tecnologías innovadoras y ofrecer servicios comerciales en el espacio.

En conjunto, estas noticias reflejan un panorama positivo en el desarrollo y la cooperación en el espacio, con énfasis en el fortalecimiento de la seguridad, la eficiencia operativa y el crecimiento del sector espacial comercial. Sin embargo, también destacan la necesidad de abordar desafíos regulatorios y normativos para garantizar un entorno espacial seguro y sostenible para todas las partes interesadas.

Sacamos los articulos de Sandra con mayor sentimiento neutral (0)

articulos_sandra_neutral <- sandra_sentiment %>% 
  filter(sentiment == 0)

#Imprimimos los 4 primeros
head(articulos_sandra_neutral, 3)
## # A tibble: 3 × 3
##   doc_id sentiment text                                                         
##    <int>     <dbl> <chr>                                                        
## 1    124         0 washington — a ground station developed by northrop grumman …
## 2    136         0 st. louis — the geospatial intelligence companies blacksky a…
## 3    188         0 colorado springs — rep. doug lamborn (r-colo.) said it might…
  1. Desarrollo de Infraestructura Espacial: Las noticias destacan el avance en el desarrollo de infraestructura espacial, como estaciones terrestres para satélites de alerta de misiles. Esto incluye la finalización exitosa de revisiones de diseño preliminares y el establecimiento de estaciones terrestres en ubicaciones estratégicas, como Guam, para mejorar la capacidad de detección y alerta temprana de lanzamientos de misiles.

  2. Servicios de Monitoreo Global: Se resalta la introducción de servicios de monitoreo global, como el seguimiento de buques por satélite. Estos servicios utilizan tecnologías de detección remota para rastrear barcos, identificar cambios y detectar actividades sospechosas, lo que contribuye a la seguridad nacional y la vigilancia marítima.

  3. Transparencia en Seguridad Espacial: Se menciona la necesidad de una mayor transparencia en las discusiones sobre seguridad espacial y los desafíos que enfrenta Estados Unidos en el ámbito espacial. Esto incluye la preocupación por la sobreclasificación de programas y políticas espaciales, lo que dificulta la comunicación efectiva con el público y otros organismos gubernamentales.

  4. Reformas en Adquisiciones Espaciales: Se destaca el progreso en las reformas de adquisiciones espaciales para agilizar y modernizar los procesos de adquisición de tecnología espacial. Esto incluye esfuerzos para introducir más innovación y flexibilidad en la adquisición de satélites y otros sistemas espaciales, así como para acelerar el tiempo de entrega de productos espaciales.

En conjunto, estas noticias reflejan un panorama neutro pero informativo sobre el desarrollo de infraestructura espacial, la introducción de servicios de monitoreo global y los desafíos y esfuerzos en curso para mejorar la seguridad y la transparencia en el espacio.

A continuacion vamos a realizar un analisis de los texto usando tecnicas de inteligencia artifical y deep learning por lo que exportamos aquellos datasets que nos vayan a ser necesarios

save(datos_space_con_extracto, file = "datos_space_con_extracto.rda")

save(datos_space_sin_extracto, file = "datos_space_sin_extracto.rda")

Conclusión

A lo largo de este trabajo, se ha realizado un análisis del dataset SpaceNews aue se descargo desde Kaggle (https://www.kaggle.com/datasets/patrickfleith/space-news-dataset), y que contiene una amplia colección de noticias relacionadas con el espacio.

El análisis de dicho dataset incluye por una parte una exploración de los datos y por otra la implementación de un algoritmo en Python para generar resúmenes automáticos de las noticias.

A continuación, se detallan los hallazgos y evaluaciones clave de los resultados obtenidos tras realizar dicho estudio:

Análisis del Dataset SpaceNews: El dataset SpaceNews resultó ser una gran fuente de información sobre diversas temáticas espaciales. Las noticias abarcaban una amplia gama de temas, incluyendo misiones espaciales, descubrimientos científicos, avances tecnológicos, y eventos significativos en la industria espacial. Este análisis preliminar permitió identificar patrones y tendencias recurrentes, como el enfoque en misiones a Marte, avances en tecnología de cohetes, y descubrimientos astronómicos. Este conocimiento contextual fue fundamental para entender la complejidad y la diversidad del contenido antes de proceder con el resumen de los textos.

Desarrollo del Algoritmo de Resumen en Python: Para abordar el desafío de resumir los textos de manera automática, se utilizó Python se hizo uso de la librería Hugging Face Transformers. Se implementaron algunos modelos de procesamiento de lenguaje natural (NLP) avanzados, como BERT (Bidirectional Encoder Representations from Transformers) y GPT (Generative Pre-trained Transformer), que son conocidos por su capacidad para entender y generar lenguaje humano de manera efectiva.

El proceso de creación de resúmenes automáticos involucró varias etapas clave:

  • Preprocesamiento de Datos: Los textos de las noticias fueron limpiados y preparados para su análisis. Esto incluyó la eliminación de caracteres especiales, la normalización de texto, y la segmentación en oraciones.

  • Aplicación del Modelo NLP: Utilizando modelos preentrenados, se generaron resúmenes para cada noticia. Estos modelos fueron ajustados para maximizar la coherencia y la relevancia de los resúmenes.

  • Post-procesamiento y Refinamiento: Los resúmenes generados fueron revisados y refinados para asegurar que fueran concisos y preservaran la esencia de los textos originales.

  • Evaluación de la Calidad de los Resúmenes: La calidad de los resúmenes generados fue evaluada mediante una comparación con resúmenes elaborados manualmente. Los criterios de evaluación incluyeron la precisión, la coherencia, la relevancia, y la capacidad de capturar las ideas principales de los textos originales. Los resultados fueron alentadores, mostrando que los resúmenes automáticos lograron mantener una alta fidelidad con respecto a la información esencial de las noticias.

Analisis de la eficiencia de los resumes:

  • Precisión y Relevancia: La mayoría de los resúmenes automáticos fueron precisos y relevantes, capturando los puntos clave sin introducir información errónea. Coherencia: Los resúmenes generados fueron coherentes y fáciles de leer, manteniendo una estructura lógica. Áreas de mejora:

  • Redundancias: En algunos casos, los resúmenes presentaron redundancias que podrían haberse eliminado para mejorar la concisión.

  • Detalles Críticos: Ocasionalmente, faltaron detalles importantes que estaban presentes en los textos originales, lo que indica la necesidad de una mejor sintonización del modelo.

Conclusión General:

El trabajo realizado demuestra que es posible utilizar técnicas avanzadas de procesamiento de lenguaje natural para generar resúmenes automáticos de alta calidad en el ámbito de las noticias espaciales. La implementación del algoritmo en Python utilizando modelos como BERT y GPT ha sido exitosa en gran medida, proporcionando resúmenes útiles y coherentes.

No obstante, el estudio también revela que existe margen para mejorar la precisión y la integridad de los resúmenes generados tal vez si dispusieramos de una mayor capacidad de computación para entrenar nuestro propio modelo y mejorar un modelo que venga preentrenado, cosa la cual, se intento realizar a lo largo del trabajo mediante el uso de Google Colab pero por falta de memoria RAM (habia 12 gb disponibles) no se pudo lograr

Este análisis y desarrollo sientan una base sólida para futuras investigaciones en el campo de la automatización del procesamiento de información textual. La capacidad de resumir grandes volúmenes de texto de manera eficaz tiene aplicaciones potenciales en diversas áreas, desde la exploración espacial hasta la gestión de información en otros dominios complejos. La continuación de este trabajo podría involucrar el ajuste fino de los modelos actuales, la incorporación de técnicas de aprendizaje profundo más avanzadas, y la expansión del análisis a otros tipos de textos y datasets.

En resumen, este estudio representa un paso significativo hacia la comprensión y la automatización del procesamiento de noticias espaciales, proporcionando herramientas y conocimientos valiosos para la comunidad científica y tecnológica.